-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (50 loc) · 1.33 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
50
51
{
"name": "chat-room-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"engines": {
"node": "16.13.2",
"npm": "8.1.2"
},
"scripts": {
"local": "nodemon",
"build": "tsc",
"start-dev": "ts-node src/server.ts",
"serve-dev": "dotenv -e environments/.dev.env npm run start-dev",
"start-prod": "node dist/server.js",
"serve-prod": "dotenv -e environments/.prod.env npm run start-prod",
"start": "npm run build && npm run serve-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misbahkhalilaz/chat-room-api.git"
},
"author": "Misbah Khalil",
"license": "ISC",
"bugs": {
"url": "https://github.com/misbahkhalilaz/chat-room-api/issues"
},
"homepage": "https://github.com/misbahkhalilaz/chat-room-api#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.8.0",
"socket.io": "^4.5.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.11.16",
"dotenv-cli": "^6.0.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}