-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
77 lines (77 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "appy-backend",
"version": "1.0.0",
"description": "A user system leveraging rest-hapi to bootstrap your app.",
"author": "Justin Headley <[email protected]>",
"repository": "https://github.com/JKHeadley/appy-backend",
"license": "MIT",
"scripts": {
"start": "npm run start:local",
"start:local": "NODE_ENV=local nodemon index.js",
"start:dev": "NODE_ENV=development nodemon index.js",
"start:prod": "NODE_ENV=production node index.js",
"test": "jest --coverage",
"seed": "node scripts/seed.js",
"update-permissions": "node scripts/update-permissions.js",
"precommit": "lint-staged",
"lint": "eslint --fix **/*.js ./"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=12.14.1",
"npm": ">=3.8.1"
},
"dependencies": {
"@hapi/bell": "^12.0.0",
"@hapi/glue": "^7.0.0",
"@hapi/nes": "^12.0.2",
"aws-sdk": "^2.175.0",
"bcryptjs": "^2.4.0",
"chalk": "*",
"confidence": "^3.0.2",
"dotenv": "^2.0.0",
"faker": "^4.1.0",
"handlebars": "^4.0.6",
"hapi-auth-jwt2": "^10.0.0",
"imagemagick": "^0.1.3",
"iplocation": "^5.0.0",
"jsonwebtoken": "^7.1.9",
"lodash": "~3.10.1",
"lodash-pickdeep": "^1.0.2",
"node-uuid": "^1.4.7",
"nodemailer": "^2.6.4",
"nodemailer-markdown": "^1.0.1",
"owasp-password-strength-test": "^1.3.0",
"password-generator": "^2.2.0",
"q": "^1.4.1",
"request-promise": "^4.2.2",
"require-dir": "^0.3.2",
"rest-hapi": "^2.0.1",
"useragent": "^2.3.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"commander": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.1.0",
"nodemon": "^1.17.5",
"prettier": "^2.0.2",
"rewire": "^4.0.1"
}
}