-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "marcpresentation-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"start": "react-scripts -r @cypress/instrument-cra start",
"start:development": "env-cmd -f ./.env.development npm run-script start",
"start:production": "env-cmd -f ./.env.production npm run-script start",
"test": "cypress run",
"test:cypress": "REACT_APP_USE_MOCK=true start-server-and-test http://localhost:3000"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"axios": "^1.11.0",
"env-cmd": "^10.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"styled-components": "^6.1.19"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@cypress/code-coverage": "^3.14.5",
"@cypress/instrument-cra": "^1.4.0",
"@types/node": "~24.0.15",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"axios-mock-adapter": "^1.21.5",
"cypress": "^15.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^3.6.0",
"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.13",
"typescript": "~4.9.5"
}
}