-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
57
58
59
60
61
62
{
"name": "hapijs-mongoose-app-bootstrap",
"version": "1.0.0",
"description": "API bootstrap app using hapijs and mongoose with JWT auth",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --opts mocha.opts ./spec",
"start": "node index.js",
"start-dev": "./node_modules/nodemon/bin/nodemon.js index.js",
"lint": "./node_modules/eslint/bin/eslint.js './spec/**' './config/**' './src/**'",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json --readme README.md",
"cover": "NODE_ENV=test ./node_modules/nyc/bin/nyc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/hapijs-mongoose-app-bootstrap.git"
},
"keywords": [
"hapi",
"api",
"mongoose",
"jwt"
],
"author": "Wojciech Krysiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/hapijs-mongoose-app-bootstrap/issues"
},
"homepage": "https://github.com/SoftwareBrothers/hapijs-mongoose-app-bootstrap#readme",
"dependencies": {
"bcrypt": "^3.0.0",
"hapi": "^17.5.3",
"hapi-auth-jwt2": "^8.1.0",
"hapi-swagger": "^9.1.1",
"hapi-swagger-next": "^1.0.0",
"inert": "^5.1.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.9",
"pack": "^2.1.0",
"require.all": "^2.0.4",
"vision": "^5.3.3"
},
"devDependencies": {
"@mocha/eslint-config-mocha": "0.0.0",
"babel-plugin-istanbul": "^4.1.6",
"chai": "^4.1.2",
"docdash": "^0.4.0",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0"
}
}