-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
{
"name": "instant-dashboard",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"fetch-content": "node scripts/fetch-content.mjs",
"predev": "node scripts/fetch-content.mjs",
"dev": "vite",
"prebuild": "node scripts/fetch-content.mjs",
"build": "tsc && vite build && node scripts/prerender.mjs",
"preview": "vite preview",
"test": "vitest run",
"gate": "tsc --noEmit && npm run build && vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"deploy:pages": "npm run build && echo 'Built to dist/. dist/404.html is the SPA shell (written by prerender.mjs Step 4.7). Push to main to deploy.'"
},
"dependencies": {
"@newrelic/browser-agent": "^1.314.0",
"@tanstack/react-query": "^5.100.11",
"fuse.js": "^7.3.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@size-limit/preset-app": "^11.0.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^24.1.3",
"size-limit": "^11.0.0",
"typescript": "^5.9.3",
"vite": "^8.0.14",
"vitest": "^3.2.4"
},
"size-limit": [
{
"path": "dist/assets/index-*.js",
"limit": "350 KB",
"running": false
},
{
"path": "dist/assets/index-*.css",
"limit": "60 KB",
"running": false
}
]
}