-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 KB
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
{
"name": "interlibraryloan",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"prepare": "husky install",
"test:cypress": "REACT_APP_USE_MOCK=true start-server-and-test http://localhost:3000",
"test": "cypress run",
"start:development": "env-cmd -f ./.env.development npm run-script start",
"start:production": "env-cmd -f ./.env.production npm run-script start"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.13.5",
"axios": "^1.1.3",
"env-cmd": "^10.1.0",
"formik": "^2.4.2",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.14.0",
"react-scripts": "5.0.1",
"styled-components": "^6.0.7",
"yup": "^1.2.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.7",
"@cypress/instrument-cra": "^1.4.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/yup": "^0.32.0",
"axios-mock-adapter": "^1.21.5",
"cypress": "^12.13.0",
"cypress-file-upload": "^5.0.8",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"start-server-and-test": "^2.0.0",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}