-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.12 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.12 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
{
"name": "smart-campus-live-integration",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "npm run dev:vite",
"server": "node server/index.js",
"dev:vite": "vite",
"dev:full": "concurrently \"npm run server\" \"npm run dev:vite\" --names \"server,vite\" --prefix-colors \"blue,green\"",
"check:secrets": "python ../../.secretsbank/check_required_secrets.py --house tier1-smart-campus",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:picking": "jest picking",
"test:performance": "jest picking-performance --verbose",
"deploy:link": "vercel link",
"deploy:preview": "npm run build && vercel deploy --prebuilt --env-file=.env.local",
"deploy:prod": "npm run build && vercel deploy --prebuilt --prod",
"new:session": "node scripts/new-session.mjs",
"tasks:export": "node scripts/tasks-export.mjs",
"check": "npm run lint && npm run test:sun",
"generateLabelRegistry": "node src/tools/generateLabelRegistry.js",
"generateRoomRegistry": "node src/tools/generateRoomRegistry.js",
"test:sun": "node --test tests/sunTelemetry.test.js"
},
"dependencies": {
"@alienkitty/alien.js": "^1.2.0",
"@alienkitty/space.js": "^1.2.0",
"@takram/three-atmosphere": "^0.15.1",
"@tweenjs/tween.js": "^25.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"gsap": "^3.12.7",
"node-fetch": "^3.3.2",
"suncalc": "^1.9.0",
"three": "^0.181.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@tailwindcss/vite": "^4.0.0",
"@types/jest": "^30.0.0",
"@types/three": "^0.181.0",
"acorn": "^8.14.1",
"concurrently": "^9.1.2",
"eslint": "^9.39.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"js-yaml": "^4.1.0",
"jsdom": "^27.1.0",
"tailwindcss": "^4.0.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.12"
}
}