-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
44
45
46
47
48
49
{
"name": "pong-game-multiplayer",
"version": "0.1.0",
"main": "dist/server.js",
"license": "MIT",
"author": "Lucas8x",
"scripts": {
"dev": "cross-env NODE_ENV=development tsnd --transpile-only --rs --ignore-watch node_modules --watch .env,public src/server.ts",
"dev2": "cross-env NODE_ENV=development tsnd --transpile-only --rs --clear --ignore-watch node_modules --watch .env,public src/server.ts",
"monitor": "cross-env NODE_ENV=development ENABLE_MONITOR=true tsnd --transpile-only --rs --clear --ignore-watch node_modules --watch .env,public src/server.ts",
"build": "cross-env NODE_ENV=production tsc --build",
"start": "node dist/server.js"
},
"dependencies": {
"chalk": "4.1.2",
"cli-table3": "^0.6.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"socket.io": "^4.5.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"description": "pong game with multiplayer online",
"homepage": "https://github.com/Lucas8x/pong-game-multiplayer",
"repository": {
"type": "git",
"url": "https://github.com/Lucas8x/pong-game-multiplayer.git"
},
"keywords": [
"pong",
"multiplayer",
"online",
"socket.io"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Lucas8x/pong-game-multiplayer/blob/main/LICENSE"
}
]
}