-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 815 Bytes
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
{
"name": "splitpot",
"version": "1.0.0",
"type": "module",
"main": "server.js",
"scripts": {
"dev:client": "vite",
"dev:server": "node server.js",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"build": "vite build",
"start": "node server.js",
"preview": "vite preview",
"postinstall": "if [[ \"$FLY_APP_NAME\" != *\"splitpot\"* ]]; then npm run build; fi"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"canvas-confetti": "^1.9.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"svelte": "^5.22.6"
},
"devDependencies": {
"concurrently": "^9.1.2",
"vite": "^6.2.1"
}
}