-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "react16-training",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"compression": "^1.7.3",
"express": "^4.16.4",
"lodash": "^4.17.10",
"morgan": "^1.9.1",
"nodemon": "^1.18.6",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1",
"redux": "^4.0.1"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"cypress:open": "cypress open",
"eject": "react-scripts eject",
"server:dev": "nodemon server/index.js --watch server --exec node",
"server": "node server/index.js"
},
"devDependencies": {
"@types/enzyme": "^3.1.15",
"@types/jest": "^23.3.9",
"@types/react-router-dom": "^4.3.1",
"cypress": "^3.1.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"jest-enzyme": "^7.0.1",
"raf": "^3.4.1",
"react-test-renderer": "^16.6.3",
"react-testing-library": "^5.3.0",
"snapshot-diff": "^0.4.1",
"source-map-explorer": "^1.6.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}