-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "hapi-joi-mongoose-jwt",
"version": "1.0.0",
"description": "Hapi, Joi, Mongo(ose), JWT Auth - Boilerplate",
"main": "dist/app.js",
"scripts": {
"build": "npx webpack --config webpack.prod.js --mode production",
"build-dev": "npx webpack --config webpack.dev.js --mode development",
"watch": "npx webpack -w --config webpack.dev.js --mode development",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "12.x"
},
"repository": {},
"keywords": [],
"author": "Jeff Holcombe @CodeSoupCafe",
"license": "ISC",
"bugs": {},
"homepage": "https://codesoupcafe.com",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.0.0",
"bcrypt": "^4.0.1",
"buffer": "^5.0.7",
"es6-promise": "^4.1.1",
"hapi-auth-header": "^3.0.1",
"hapi-auth-jwt2": "^10.1.0",
"hapi-swagger": "^13.0.0",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.6.1",
"mongoose": "^5.9.9"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@types/boom": "^7.3.0",
"@types/hapi__hapi": "^19.0.2",
"@types/hapi__inert": "^5.2.0",
"@types/hapi__joi": "^16.0.12",
"@types/hapi__vision": "^5.5.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/lodash": "^4.14.149",
"@types/mongoose": "^5.7.10",
"@types/node": "^13.11.1",
"dotenv-webpack": "^1.7.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}