-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 849 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
33
{
"name": "realpong.server",
"version": "1.0.0",
"description": "Real Pong Game",
"main": "src/main.ts",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"serve": "node dist/server.js",
"serve-debug": "nodemon --inspect dist/server.js",
"watch": "nodemon dist/server.js"
},
"author": "Grzegorz Kotfis",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"copy-webpack-plugin": "^5.1.1",
"phaser": "^3.21.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}