-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.08 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
89
90
91
92
93
94
95
96
{
"name": "cis-front",
"version": "0.0.1",
"description": "React MobX API Websocket repository",
"author": "Alexander Serditov",
"repository": "https://github.com/dguard/cis-front",
"scripts": {
"start": "serve -s build -l 3000",
"dev": "cross-env PORT=3000 REACT_APP_API_HOST=http://localhost:8888 REACT_GRAPHQL_API_HOST=http://localhost:8892 NODE_ENV=development ./bin/react-scripts.js start",
"build": "cross-env PORT=3000 REACT_APP_API_HOST=http://localhost:8888 REACT_APP_WEBSOCKET_HOST=ws://localhost:8081 REACT_APP_GRAPHQL_API_HOST=http://localhost:8892 NODE_ENV=production ./bin/react-scripts.js build",
"postinstall": "node tools/postinstall.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@styled-icons/bootstrap": "^10.25.0",
"@types/node": "^14.0.27",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.1",
"babel-loader": "^8.2.2",
"babel-plugin-named-asset-import": "^0.3.7",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"inputmask": "^5.0.5",
"lodash.debounce": "^4.0.8",
"mini-css-extract-plugin": "^1.3.5",
"mobx": "^5.15.4",
"mobx-react": "^6.2.5",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.2.0",
"react": "^16.13.1",
"react-calendar": "^3.3.0",
"react-datetime-picker": "^3.0.4",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"reactjs-popup": "^2.0.4",
"replace-in-file": "^6.1.0",
"sass-loader": "^10.1.1",
"serve": "11.3.2",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"styled-icons": "^10.28.0",
"terser-webpack-plugin": "2.3.5",
"ts-loader": "^8.0.14",
"typescript": "~3.9.7",
"url-loader": "^4.1.1",
"use-immer": "^0.4.2",
"webpack-dev-server": "^3.10.3",
"webpack-manifest-plugin": "^3.0.0",
"workbox-webpack-plugin": "^6.1.0"
},
"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"
]
},
"devDependencies": {
"@babel/runtime": "^7.12.5",
"concurrently": "^5.1.0",
"cross-env": "^7.0.3",
"eslint-loader": "^4.0.2",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"typed-css-modules": "^0.6.4",
"typescript-plugin-css-modules": "^2.4.0",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0"
},
"engines": {
"node": "12.20.0"
}
}