-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:3001",
"dependencies": {
"@cmsgov/design-system": "^10.1.0",
"@types/node": "^22.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"axios": "^1.7.4",
"micromatch": "4.0.8",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2",
"sass": "1.72.0",
"typescript": "^4.8.4",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.3",
"web-vitals": "^3.0.3"
},
"scripts": {
"start": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --max-warnings=100 src",
"test": "TEST_APP_API_URL=http://localhost:3000 vitest",
"coverage": "TEST_APP_API_URL=http://localhost:3000 vitest run --coverage"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.1.2",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitest/coverage-v8": "2.1.6",
"eslint": "^9.16.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.28.0",
"jsdom": "^25.0.1",
"react-error-overlay": "6.0.9",
"vite": "^6.0.9",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^3.1.2"
},
"resolutions": {
"@types/react": "^17.0.2"
}
}