-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"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",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"deploy:pages": "npm run build && cp dist/index.html dist/404.html && echo 'Built to dist/. Push to main to deploy.'"
},
"dependencies": {
"@newrelic/browser-agent": "^1.314.0",
"@tanstack/react-query": "^5.29.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.22.3",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^25.5.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^24.1.3",
"typescript": "^5.9.3",
"vite": "^5.2.8",
"vitest": "^1.5.0"
}
}