-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "pwa-playlist",
"version": "0.1.0",
"private": true,
"dependencies": {
"fast-average-color": "^6.4.2",
"history": "^5.3.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-loadable": "^5.5.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"node-sass": "^5.0.0",
"npm-force-resolutions": "^0.0.10",
"prop-types": "^15.8.1",
"react-test-renderer": "^16.14.0",
"workbox-cli": "^6.5.3"
},
"engines": {
"node": "14.18.1",
"npm": "6.14.15"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"workbox": " workbox generateSW workbox-config.js",
"test": "CI=true react-scripts test --runInBand --no-cache --coverage"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"resetMocks": true,
"collectCoverageFrom": [
"**/src/app/index.js",
"**/src/components/**/*.js",
"**/src/pages/**/*.js",
"**/src/helpers/*.js"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"resolutions": {
"yargs-parser": ">=18.1.2",
"minimist": "^1.2.5"
}
}