-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "dyn-proxy",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "ols dev --port 5051",
"electron-run": "cross-env NODE_ENV=development electron ./main/index.js",
"electron-pack": "cross-env NODE_ENV=production electron-packager ./main/index.js --out=pack",
"build": "ols build",
"commit": "git-cz",
"lint:script": "eslint --ext .tsx,.ts,.js,.jsx --fix ./src",
"lint:style": "stylelint --fix 'src/**/*.{less,css}' --syntax less"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md,yml}": "prettier --write",
"*.{less,css}": [
"yarn lint:style"
],
"*.{tsx,ts,js,jsx}": [
"yarn lint:script"
]
},
"sideEffects": [
"dist/*",
"*.less",
"*.css"
],
"author": "",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.2.2",
"antd": "^4.0.2",
"async": "~0.9.0",
"async-task-mgr": ">=1.1.0",
"axios": "^0.19.2",
"body-parser": "^1.13.1",
"brotli": "^1.3.2",
"classnames": "^2.2.6",
"clipboard-js": "^0.3.3",
"co": "^4.6.0",
"colorful": "^2.1.0",
"commander": "~2.11.0",
"component-emitter": "^1.2.1",
"compression": "^1.4.4",
"copy-to-clipboard": "^3.3.1",
"cross-env": "^7.0.3",
"electron": "^17.1.2",
"es6-promise": "^3.3.1",
"express": "^4.8.5",
"fast-json-stringify": "^0.17.0",
"iconv-lite": "^0.4.6",
"inquirer": "^5.2.0",
"ip": "^0.3.2",
"juicer": "^0.6.6-stable",
"lodash": "^4.17.20",
"mime-types": "2.1.11",
"mkdirp": "^1.0.4",
"mobx": "^6.5.0",
"mobx-react-lite": "^3.3.0",
"moment": "^2.15.1",
"nedb": "^1.8.0",
"node-easy-cert": "^1.3.3",
"pug": "^2.0.0-beta6",
"qrcode-npm": "0.0.3",
"query-string": "^6.13.7",
"react-json-view": "^1.21.3",
"react-window": "^1.8.6",
"request": "^2.74.0",
"stream-throttle": "^0.1.3",
"svg-inline-react": "^1.0.2",
"thunkify": "^2.1.2",
"whatwg-fetch": "^1.0.0",
"ws": "^5.1.0"
},
"devDependencies": {
"@ols-scripts/cli": "^0.0.2",
"@types/node": "^13.7.4",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.9",
"antd": "^2.5.0",
"electron-packager": "^15.4.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.1",
"react": "^16.12.0",
"react-addons-perf": "^15.4.0",
"react-dom": "^16.12.0",
"react-json-tree": "^0.10.0",
"react-redux": "^4.4.5",
"react-router": "^5.1.2",
"react-router-dom": "^5.2.0",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.6.0",
"redux-saga": "^0.11.1",
"stream-equal": "0.1.8",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.7.1",
"tunnel": "^0.0.6",
"url-loader": "^0.5.7",
"urllib": "^2.34.2"
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%",
"ie >= 11"
]
}