-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 750 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
{
"name": "ambitiousthing",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"build:vite": "tsc --noEmit && vite build",
"cap:sync": "npm run build:vite && npx cap sync",
"cap:open:android": "npx cap open android",
"cap:open:ios": "npx cap open ios"
},
"dependencies": {
"express": "^4.21.0",
"ws": "^8.18.0"
},
"devDependencies": {
"typescript": "^5.6.3",
"vite": "^6.3.0",
"@capacitor/cli": "^6.2.1",
"@capacitor/core": "^6.2.1",
"@capacitor/app": "^6.0.1",
"@capacitor/android": "^6.2.1",
"@capacitor/ios": "^6.2.1",
"phaser": "^3.90.0"
}
}