-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "arclib",
"version": "1.0.0",
"private": true,
"dependencies": {
"antd": "^3.8.0",
"babel-polyfill": "^6.23.0",
"base-64": "^0.1.0",
"classnames": "^2.2.5",
"date-fns": "^1.28.5",
"http-proxy-middleware": "^3.0.3",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"moment": "^2.21.0",
"normalize.css": "^7.0.0",
"prop-types": "^15.5.10",
"react": "^16.12.0",
"react-bootstrap": "^0.32.1",
"react-codemirror": "^1.0.0",
"react-datetime": "^2.14.0",
"react-device-detect": "^2.2.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^16.12.0",
"react-dropzone": "^4.2.13",
"react-loader-spinner": "^2.0.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"react-select": "^3.1.1",
"react-syntax-highlighter": "^7.0.4",
"react-tooltip": "^3.5.0",
"recompose": "^0.26.0",
"redux": "^3.6.0",
"redux-form": "^6.7.0",
"redux-thunk": "^2.2.0",
"utf8": "^2.1.2",
"uuid": "^3.0.1",
"validator": "^7.0.0",
"vkbeautify": "^0.99.3"
},
"devDependencies": {
"cross-env": "7.0.2",
"node-sass-chokidar": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"react-scripts": "^2.1.8"
},
"scripts": {
"build-css": "node-sass-chokidar src/styles/style.scss -o src/styles/",
"watch-css": "yarn build-css && node-sass-chokidar src/styles/ -o src/styles/ --watch --recursive",
"start-js": "react-scripts start",
"start": "cross-env REACT_APP_PROD_VERSION=false npm-run-all -p watch-css start-js",
"build": "yarn build-css && cross-env REACT_APP_PROD_VERSION=false react-scripts build",
"build-prod": "yarn build-css && cross-env REACT_APP_PROD_VERSION=true react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"pretty": "npx prettier --write \"./src/**/*.js\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}