-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "bankers-dilemma-server",
"version": "1.0.0",
"description": "The server application for the Banker's Dilemma Game",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"dev:debug": "nodemon --inspect src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liAmirali/bankers-dilemma-server.git"
},
"author": "Amirali Lotfi",
"license": "MIT",
"bugs": {
"url": "https://github.com/liAmirali/bankers-dilemma-server/issues"
},
"homepage": "https://github.com/liAmirali/bankers-dilemma-server#readme",
"dependencies": {
"@types/express": "^4.17.21",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pg": "^8.11.3",
"socket.io": "^4.7.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/pg": "^8.10.9",
"@types/uuid": "^9.0.7",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}