-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.21 KB
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
{
"name": "chat-backend",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"start": "node .",
"build": "tsc",
"postinstall": "tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"deploy": "git add . && git commit -m Heroku && git push heroku master"
},
"repository": {
"type": "git",
"url": "https://github.com/feedkeek/chatapp-backend.git"
},
"engines": {
"node": "14.15.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/validator": "^13.1.4",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.12.14",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"validator": "^13.6.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.1",
"chai": "^4.3.4",
"mocha": "^9.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
}
}