-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 KB
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
38
39
40
{
"name": "group-app",
"version": "0.1.0",
"description": "API Server for group application",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint api",
"dev": "npm run lint && NODE_ENV=development LOG_FMT=dev PORT=9000 node api/server.js | bunyan",
"dev-cluster": "npm run lint && NODE_ENV=development LOG_FMT=dev PORT=9000 node api/server_cluster.js | bunyan"
},
"repository": {
"type": "git",
"url": "https://github.com/hillc5/group-api-server.git"
},
"author": "Charles Hill",
"license": "ISC",
"bugs": {
"url": "https://github.com/hillc5/group-api-server/issues"
},
"homepage": "https://github.com/hillc5/group-api-server#readme",
"dependencies": {
"bcrypt": "^0.8.5",
"body-parser": "^1.14.2",
"bunyan": "^1.7.0",
"cors": "^2.7.1",
"es6-promise": "^3.0.2",
"express": "^4.13.4",
"express-validator": "^2.19.1",
"jsonwebtoken": "^5.5.4",
"kerberos": "0.0.18",
"mongo": "^0.1.0",
"mongodb": "^2.1.7",
"morgan": "^1.6.1",
"node-uuid": "^1.4.7"
},
"devDependencies": {
"eslint": "^2.8.0"
}
}