-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.27 KB
/
package.json
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
{
"name": "pixel_jungle2",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "npm run build-client && npm run server",
"build-client": "cd client && npm i && npm run build",
"server": "cd server && npm i && node index.js",
"serve": "cd server && npm i && nodemon index.js",
"deploy": "git push heroku main",
"tunnel1": "lt --port 5173 --subdomain thornberry2",
"tunnel2": "lt --port 3000 --subdomain thornberry",
"tunnel": "npm run tunnel1 & npm run tunnel2",
"build-image": "docker build -t mygame:latest .",
"local": "heroku local -p 3000",
"disco": "disco projects:remove jungle; disco projects:add --github elijer/jungle --name jungle --domain jungle.rcdis.co",
"test": "cd client; npx playwright test --headed"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.19.2",
"rgb-hex": "^4.1.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"typescript": "^5.4.5",
"uuid": "^10.0.0",
"uuid4": "^2.0.3",
"vite": "^5.2.0",
"yup": "^1.4.0"
},
"engines": {
"node": "v22.1.0"
},
"devDependencies": {
"@types/three": "^0.165.0",
"@types/uuid": "^10.0.0",
"localtunnel": "^2.0.2"
}
}