-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.28 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.28 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
73
74
75
76
77
78
{
"version": "0.11.1",
"dependencies": {
"@nmfs-radfish/radfish": "^1.1.0",
"@nmfs-radfish/react-radfish": "^1.0.0",
"@testing-library/user-event": "^14.5.2",
"@trussworks/react-uswds": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.1",
"workbox-background-sync": "^7.0.0",
"workbox-broadcast-update": "^7.0.0",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-google-analytics": "^7.0.0",
"workbox-navigation-preload": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-range-requests": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0",
"workbox-streams": "^7.0.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"prebuild": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"test:e2e": "concurrently --kill-others --success first \"npm start\" \"vitest './src/__tests__/e2e/integration.e2e.test.jsx'\"",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write src --config ./.prettierrc",
"serve": "vite preview",
"lhci:mobile": "lhci autorun",
"lhci:desktop": "lhci autorun --collect.settings.preset=desktop"
},
"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": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.23.3",
"@lhci/cli": "^0.14.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "^16.0.1",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "24.1.3",
"msw": "^2.6.5",
"prettier": "^3.1.0",
"vite": "^5.1.5",
"vite-plugin-pwa": "0.21.0",
"vitest": "2.1.2"
},
"msw": {
"workerDirectory": "public"
}
}