-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 755 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 755 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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "my-gomix-app",
"version": "0.0.1",
"description": "What am I about?",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.16.2",
"body-parser": "^1.18.2",
"cookie-session": "^1.3.2",
"socket.io": "^2.0.3",
"multer": "^1.3.0",
"ejs": "^2.5.7",
"require-glob": "^3.2.0",
"insane": "^2.6.2"
},
"engines": {
"node": "6.9.1"
},
"repository": {
"url": "https://gomix.com/#!/project/welcome-project"
},
"keywords": [
"node",
"gomix",
"express"
]
}