-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 973 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
35
36
37
38
39
40
{
"name": "wfh-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --debug index.js",
"lint": "eslint --ext .js --ext .jsx ./ && echo No linting errors.",
"test": "mocha",
"test:watch": "npm run test -- --watch"
},
"repository": "git@github.com:pebblecode/wfh3_backend.git",
"keywords": [],
"author": "Mike James <mike@pebblecode.com>",
"license": "ISC",
"dependencies": {
"analytics-node": "^2.0.0",
"bcrypt": "^0.8.5",
"boom": "^2.9.0",
"camelcase-keys-recursive": "^0.2.0",
"cradle": "^0.6.9",
"getenv": "^0.5.0",
"hapi": "^11.0.1",
"hapi-auth-basic": "^3.0.0",
"joi": "^6.9.1",
"keymirror": "^0.1.1",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"node-uuid": "^1.4.3",
"request": "^2.65.0"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^2.3.3"
},
"engines": {
"node": "4.x"
}
}