-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "fc-subs",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite --host",
"dev:server": "tsx watch server/index.ts",
"dev:all": "concurrently -n web,api -c blue,green \"npm:dev\" \"npm:dev:server\"",
"build": "tsc -b && vite build",
"start": "NODE_ENV=production tsx server/index.ts",
"preview": "vite preview",
"admin": "tsx server/admin.ts",
"test:rotation": "TSX_TSCONFIG_PATH=tsconfig.app.json tsx scripts/test-rotation.ts",
"test:e2e": "playwright test"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hono/node-server": "^1.13.1",
"better-sqlite3": "^11.3.0",
"hono": "^4.6.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"tsx": "^4.19.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-pwa": "^0.20.5"
}
}