-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 778 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 778 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
{
"name": "crypto-chat",
"version": "0.0.1",
"description": "endtoend encryption chat",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp scripts",
"watch": "gulp watch",
"start": "node build/index.js",
"dev": "DEBUG=* gulp watch & nodemon --config nodemon.json build/index.js"
},
"author": "jakob.povsic@gmail.com",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"gulp": "^3.9.1",
"gulp-typescript": "^4.0.2",
"morgan": "^1.9.0",
"pug": "^2.0.3",
"socket.io": "^2.1.0",
"socketio": "^1.0.0"
},
"devDependencies": {
"@types/socket.io": "^1.4.33",
"@types/node": "^10.0.0",
"typescript": "^2.8.3"
}
}