-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 907 Bytes
/
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
{
"name": "chat-app-backend",
"version": "3.0.0",
"repository": "https://github.com/shivamshekhar/chat-app-backend",
"description": "A basic backend app for chat application",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp",
"start": "npm run build && node ./dist/app.js"
},
"author": "Shivam Shekhar <[email protected]>",
"license": "MIT",
"engines": {
"node": "^12.11.1"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/moment": "^2.13.0",
"@types/mysql": "^2.15.18",
"@types/node": "^15.12.1",
"@types/uuid": "^8.3.0",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"typescript": "^4.3.2"
}
}