-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 KB
/
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
35
36
37
{
"name": "hello-express",
"version": "0.0.1",
"private": true,
"description": "Personal project to get to know Express.js and Node.js",
"main": "index.js",
"scripts": {
"test": "echo \"Starting app with nodemon\" && nodemon ./bin/www",
"start": "forever start -w --watchDirectory ~/code/hello-express --uid live -a -l ~/code/hello-express/logs/forver.log -o ~/code/hello-express/logs/console.log -e ~/code/hello-express/logs/console.log ~/code/hello-express/bin/www",
"stop": "forever stop live"
},
"repository": {
"type": "git",
"url": "https://github.com/Gonnagle/hello-express.git"
},
"keywords": [
"hello",
"express.js",
"node.js"
],
"author": "Gonnagle",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gonnagle/hello-express/issues"
},
"homepage": "https://github.com/Gonnagle/hello-express",
"dependencies": {
"body-parser": "~1.8.1",
"cookie-parser": "~1.3.3",
"debug": "~2.0.0",
"express": "^4.10.2",
"jade": "~1.6.0",
"morgan": "~1.3.0",
"nodemon": "^1.2.1",
"serve-favicon": "~2.1.3"
}
}