-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"concurrently": "^4.0.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"moxios": "^0.4.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-redux": "^5.1.1",
"react-scripts": "^2.1.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "concurrently \"npm run server\" \"react-scripts start\"",
"server": "nodemon server/app",
"wdio": "wdio",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "npm run test -- --coverage",
"format": "prettier --write \"**/*.+(js|json|css)\"",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!/node_modules/",
"!src/index.js",
"!src/Root.js"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"chai": "^4.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"fetch-mock": "^7.2.5",
"firebase-tools": "^6.2.2",
"node-sass": "^4.10.0",
"nodemon": "^1.18.6",
"prop-types": "^15.6.2",
"react-test-renderer": "^16.6.3",
"redux-mock-store": "^1.5.3",
"sinon": "^7.1.1",
"wdio-mocha-framework": "^0.6.4",
"wdio-selenium-standalone-service": "0.0.12",
"wdio-spec-reporter": "^0.1.5",
"webdriverio": "^4.14.1"
}
}