-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
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": "api",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"lint": "",
"dev": "NODE_ENV=dev nodemon --max-old-space-size=8192",
"prestart": "npm run build",
"start": "node ./build/index.js --max-old-space-size=8192",
"test": "mocha --recursive",
"prettier": "prettier \"**/*.+(ts|js|jsx|json|css|less|)\"",
"prettier:format": "npm run prettier -- --write"
},
"keywords": [
"typescript",
"hapi"
],
"author": "josh conlin",
"license": "ISC",
"devDependencies": {
"@types/hapi": "18.0.3",
"@types/node": "13.7.0",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"husky": "3.0.9",
"mocha": "7.0.1",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"ts-node": "8.6.2",
"typescript": "3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "tsc && pretty-quick --staged",
"pre-push": "mocha --recursive"
}
},
"engines": {
"node": "13"
},
"dependencies": {
"bcryptjs": "2.4.3",
"hapi-pino": "6.3.0",
"@hapi/hapi": "18.4.0",
"hapi-auth-jwt2": "8.8.1",
"joi": "14.3.1",
"jsonwebtoken": "8.5.1",
"good": "8.1.2",
"good-console": "8.0.0",
"good-file": "6.0.1",
"good-squeeze": "5.1.0",
"mongoose": "5.8.11"
}
}