-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "robotics-ctf",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.19.4",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"perf:dev": "NODE_ENV=development npm run dev",
"perf:monitor": "node scripts/performance-monitor.js"
},
"dependencies": {
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.1",
"@vercel/speed-insights": "^1.2.0",
"next": "^15.5.9",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hot-toast": "^2.6.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"autoprefixer": "^10.4.21",
"babel-jest": "^30.1.2",
"eslint": "9.34.0",
"eslint-config-next": "15.5.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-security": "^3.0.1",
"jest": "^30.1.2",
"jest-environment-jsdom": "^30.1.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"webpack-bundle-analyzer": "^4.10.2"
}
}