-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "hapijsbackend",
"version": "1.0.0",
"description": "HapiJS Backend",
"main": "app.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha ./tests",
"test:ci": "cross-env NODE_ENV=ci mocha ./tests",
"coverage": "nyc --reporter=html npm run test",
"server:dev": "cross-env NODE_ENV=development node server/server.js",
"server:prod": "cross-env NODE_ENV=production node server/server.js",
"server:watch": "cross-env NODE_ENV=development nodemon server/server.js",
"lint": "eslint server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ottoo/HapiJSBackend.git"
},
"keywords": [
"hapijs"
],
"author": "Otto Kivikarki",
"license": "MIT",
"bugs": {
"url": "https://github.com/ottoo/HapiJSBackendissues"
},
"homepage": "https://github.com/ottoo/HapiJSBackend#readme",
"dependencies": {
"bcryptjs": "2.4.3",
"bluebird": "3.5.2",
"boom": "7.2.0",
"cross-env": "5.2.0",
"dotenv": "6.0.0",
"good": "8.1.1",
"good-console": "7.1.0",
"good-squeeze": "5.1.0",
"hapi": "17.5.4",
"hapi-auth-jwt2": "8.1.0",
"inert": "5.1.0",
"joi": "13.6.0",
"jsonwebtoken": "8.3.0",
"lodash": "4.17.10",
"moment": "2.22.2",
"mongoose": "5.2.13"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "5.5.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"mocha": "5.2.0",
"nyc": "13.0.1",
"sinon": "6.2.0",
"sinon-mongoose": "2.2.1"
}
}