-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 781 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 781 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
34
{
"name": "simple-chat-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon -e ts src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/mysql": "^2.15.7",
"@types/socket.io": "^2.1.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"mysql": "^2.17.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"socket.io": "^2.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2",
"util": "^0.12.1"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}