-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "scripture-memorization",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@types/jest": "^24.9.1",
"@types/node": "^14.14.7",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.6",
"@types/react-scroll": "^1.8.2",
"@types/webaudioapi": "0.0.27",
"axios": "^0.21.1",
"clipboard-polyfill": "^3.0.1",
"cypress": "^5.6.0",
"firebase": "^7.23.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scroll": "^1.8.1",
"redux": "^4.0.5",
"sass": "^1.72.0",
"ts-toolbelt": "^9.6.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:tsc": "tsc",
"test:jest": "react-scripts test --watchAll=false",
"test:cy": "cy:run",
"test:cy-open": "start-server-and-test start http://localhost:3000 \"cypress open\"",
"test:cy-run": "start-server-and-test start http://localhost:3000 \"cypress run\"",
"test": "npm-run-all -p test:tsc test:jest",
"eject": "react-scripts eject",
"prepare": "husky install",
"deploy:staging": "npm run build && firebase deploy -P staging",
"deploy:prod": "npm run build && firebase deploy -P default"
},
"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"
]
},
"devDependencies": {
"@testing-library/dom": "^7.26.6",
"@testing-library/user-event": "^7.2.1",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/react-redux": "^7.1.9",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"husky": "^7.0.0",
"npm-run-all": "^4.1.5",
"redux-devtools": "^3.7.0",
"start-server-and-test": "^1.12.1",
"ts-jest": "^26.4.4",
"typescript": "^4.3.5"
}
}