generated from hounddesk/pkg-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
78
79
80
81
{
"name": "houndesk-api",
"version": "1.0.0",
"description": "Hounddesk API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -Rf dist/",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"format": "prettier --write \"src/*.ts\"",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --fix --ext .js,.ts",
"prepare": "tsc",
"coverage": "jest --coverage"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:node-co/hounddesk-api.git"
},
"keywords": [
"nodejs npm"
],
"author": "R.R <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-co/hounddesk-api/issues"
},
"homepage": "https://github.com/node-co/hounddesk-api#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^13.13.47",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.2",
"husky": "^4.2.5",
"jest": "^25.1.0",
"jest-tap-reporter": "^1.9.0",
"prettier": "^2.0.5",
"ts-jest": "^25.2.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"dependencies": {
"@hapi/boom": "^9.1.2",
"@hapi/hapi": "^20.1.2",
"@hapi/joi": "^17.1.1",
"@hounddesk/bones-types": "^1.3.2",
"@hounddesk/hapi-authorization-header": "^1.1.1",
"@hounddesk/password-policy": "^1.1.2",
"@hounddesk/plugin-firebase-authz": "^1.1.2",
"@hounddesk/plugin-firebase-users": "^1.1.9",
"@types/convict": "^5.2.2",
"convict": "^6.0.1",
"typeorm": "^0.2.31"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"npm-cache",
".npm"
],
"reporters": [
"jest-tap-reporter"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint:fix && npm test",
"pre-push": "npm run format && npm run lint:fix && npm test"
}
}
}