-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2 KB
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
{
"name": "nea",
"version": "1.0.0",
"private": true,
"babel": {
"plugins": [
"@babel/plugin-proposal-optional-chaining"
]
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"formik": "^1.5.8",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"query-string": "^6.8.3",
"rc-time-picker": "^3.7.2",
"react": "^16.9.0",
"react-addons-update": "^15.6.2",
"react-dates": "^21.2.0",
"react-dom": "^16.9.0",
"react-images": "^1.0.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"react-slick": "^0.25.2",
"react-table": "^6.10.0",
"react-toastify": "^5.4.0",
"react-with-styles": "^4.0.1",
"reactstrap": "^8.0.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-form": "^8.2.6",
"redux-thunk": "^2.3.0",
"universal-cookie": "^4.0.2",
"use-debounce": "^3.1.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"customize-cra": "^0.8.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"react-app-rewired": "^2.1.4"
},
"scripts": {
"start": "node server.js",
"dev": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired 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"
]
},
"engines": {
"node": ">= 8.x",
"npm": "6.x"
}
}