-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 993 Bytes
/
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
{
"name": "ttt",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"jest-dom": "^1.8.1",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-redux": "^5.0.7",
"react-scripts": "1.0.17",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:enzyme": "react-scripts test --env=jsdom Products.spec.js",
"test:reactTestingLibrary": "react-scripts test --env=jsdom Products.testingLibrary.spec.js",
"eject": "react-scripts eject"
},
"devDependencies": {
"coveralls": "^3.0.2",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"react-addons-test-utils": "^15.6.2",
"react-testing-library": "^4.1.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/server.js",
"!src/index.js"
]
}
}