-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
{
"name": "sinter",
"private": true,
"version": "0.1.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"dev:server": "tsx watch server/index.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:server\"",
"build": "tsc -b && vite build",
"start": "NODE_ENV=production tsx server/index.ts",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:all": "vitest run && playwright test"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"better-sqlite3-session-store": "^0.1.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-session": "^1.19.0",
"immer": "^10.1.1",
"lucide-react": "^1.8.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.170.0",
"tsx": "^4.21.0",
"uuid": "^11.1.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.1.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/jsdom": "^28.0.1",
"@types/passport": "^1.0.17",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.17",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/three": "^0.170.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^29.0.2",
"tailwindcss": "^4.1.4",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^4.1.4"
}
}