-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.68 KB
/
package.json
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
{
"name": "drg-otc",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.22.2",
"framer-motion": "^1.6.7",
"i18next": "^17.0.16",
"i18next-browser-languagedetector": "^3.0.3",
"i18next-xhr-backend": "^3.2.0",
"js-sha256": "^0.9.0",
"lodash": "^4.17.15",
"moment-duration-format": "^2.3.2",
"numeral": "^2.0.6",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-i18next": "^10.13.0",
"react-loadable": "^5.5.0",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"babel-plugin-import": "^1.11.0",
"customize-cra": "^0.5.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"node-sass": "^4.12.0",
"node-sass-chokidar": "^1.3.5",
"react-app-rewire-css-modules": "codebandits/react-app-rewire-css-modules",
"react-app-rewired": "^2.1.3",
"react-scripts": "3.1.1",
"sass-loader": "^7.1.0"
},
"scripts": {
"start": "NODE_PATH=src react-app-rewired start",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"build-staging": "sh -ac '. .env.staging; npm run build-css && NODE_PATH=src react-app-rewired build'",
"build": "sh -ac '. .env.production; npm run build-css && NODE_PATH=src react-app-rewired build'",
"test": "NODE_PATH=src react-app-rewired test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}