-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.78 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
{
"name": "tepid-web",
"version": "2.0.0",
"private": true,
"dependencies": {
"@csstools/normalize.css": "github:csstools/normalize.css",
"@material-ui/core": "^4.8.1",
"@material-ui/icons": "^4.5.1",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.22",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"antd": "^3.26.4",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-fetch": "^3.0.4",
"express": "^4.16.3",
"node-sass-chokidar": "^1.4.0",
"npm-run-all": "^4.1.5",
"react": "^16.12.0",
"react-autosuggest": "^9.4.3",
"react-debounce-input": "^3.2.2",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.1",
"typescript": "^3.7.4"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"start-ssr": "babel-node ./src/server.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"antd-form-builder": "^1.0.10",
"babel-preset-env": "^1.7.0",
"npm-run-all": "^4.1.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
}
}