-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.29 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
{
"name": "haystack-console",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8080",
"dependencies": {
"axios": "^0.18.1",
"bootstrap": "^4.4.1",
"compression": "^1.7.4",
"concurrently": "^4.1.2",
"consolidate": "^0.15.1",
"cookie-parser": "^1.4.4",
"debug": "~2.6.9",
"express": "^4.17.1",
"fs-extra": "^9.0.0",
"http-errors": "~1.6.2",
"influx": "^5.5.1",
"lodash": "^4.17.15",
"morgan": "~1.9.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.3",
"numeral": "^2.0.6",
"react": "^16.12.0",
"react-bootstrap-table-next": "^4.0.1",
"react-bootstrap-table2-filter": "^1.3.2",
"react-bootstrap-table2-overlay": "^2.0.0",
"react-bootstrap-table2-paginator": "^2.1.2",
"react-bootstrap-table2-toolkit": "^2.1.2",
"react-circular-progressbar": "^1.2.1",
"react-content-loader": "^5.0.4",
"react-countup": "^4.3.3",
"react-dom": "^16.12.0",
"react-icons": "^3.10.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-trend": "^1.2.5",
"reactstrap": "^8.4.1",
"replacestream": "^4.0.3",
"source-map-explorer": "^1.8.0",
"string-replace-stream": "0.0.2",
"swig": "^1.4.2"
},
"scripts": {
"start": "./server/server.js",
"start:dev": "concurrently \"nodemon --ignore 'public/*' npm start\" \"npm run client\"",
"clean": "rm -rf build",
"analyze": "source-map-explorer build/static/js/main.*",
"client": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:react/recommended"
],
"plugins": [
"react"
],
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"comma-dangle": [
"error",
"never"
]
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
}
}