-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.36 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": "tetrolyseus",
"version": "1.0.0",
"description": "Tetrolyseus - A Tetris implementation with a twist",
"main": "app/backend/index.js",
"scripts": {
"start:backend": "nodemon --watch backend -e ts --exec \"ts-node backend/index.ts\"",
"build:backend": "tsc -p tsconfig.json",
"start:frontend": "parcel frontend/index.html",
"build:frontend": "parcel build frontend/index.html",
"clean": "rimraf ./dist ./app",
"start": "concurrently --kill-others-on-fail --handle-input \"npm run start:backend\" \"npm run start:frontend\"",
"bundle": "npm run clean && npm run build:backend && npm run build:frontend && ncp dist/ app/public"
},
"author": "Simon Hofmann <kontakt@s1h.org>",
"bugs": {
"url": "https://github.com/s1h-org/tetrolyseus"
},
"homepage": "https://github.com/s1h-org/tetrolyseus#readme",
"devDependencies": {
"@types/cors": "2.8.6",
"@types/express": "4.17.6",
"concurrently": "5.3.0",
"ncp": "^2.0.0",
"nodemon": "2.0.4",
"parcel": "1.12.4",
"rimraf": "^3.0.2",
"ts-node": "8.10.2",
"typescript": "3.9.5"
},
"dependencies": {
"@colyseus/monitor": "0.12.2",
"colyseus": "0.13.7",
"colyseus.js": "0.13.2",
"cors": "2.8.5",
"express": "4.17.1",
"express-jwt": "5.3.3"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Safari versions"
]
}