-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.64 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
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
{
"name": "react-default",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@emotion/babel-plugin": "^11.1.2",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@loadable/component": "^5.14.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.1",
"axios": "^0.21.1",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-google-login": "^5.2.2",
"react-hook-form": "^6.15.4",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.2",
"react-select": "^4.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"styled-components": "^5.2.1",
"sweetalert2": "^10.15.5",
"web-vitals": "^1.1.0"
},
"scripts": {
"start": "run-script-os",
"start:win32": "set NODE_ENV=production&& node dist",
"start:default": "NODE_ENV=production node dist",
"dev": "run-script-os",
"dev:win32": "npm-run-all --parallel dev_win32:**",
"dev:default": "npm-run-all --parallel dev_default:**",
"dev_win32:server": "set NODE_ENV=development&& nodemon --watch server --exec babel-node server",
"dev_win32:client": "react-scripts start",
"dev_default:server": "NODE_ENV=development nodemon --watch server --exec babel-node server",
"dev_default:client": "react-scripts start",
"build": "run-script-os",
"build:win32": "react-scripts build && babel server --out-dir dist && move build dist/public",
"build:default": "rm -rf dist build && react-scripts build && babel server --out-dir dist && mv build dist/public",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/node": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"nodemon": "^2.0.7",
"run-script-os": "^1.1.5",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}