-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "hapi-typescript-ddd-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for DDD with Hapi and TypeScript",
"main": "src/app.ts",
"scripts": {
"start": "ts-node -r tsconfig-paths/register ./src/app.ts",
"start:dev": "nodemon -r tsconfig-paths/register src/app.ts",
"test": "jest ./src -i --coverage",
"test:watch": "jest ./src --watch -i",
"test:watch:all": "jest ./src --watchAll -i",
"lint": "eslint ./src --ext .ts"
},
"keywords": [
"hapi",
"typescript",
"ddd"
],
"author": "Dimas Saputra <dimas.maulanads@gmail.com>",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/hapi": "^21.2.0",
"@hapi/inert": "^7.0.0",
"dotenv": "^16.0.3",
"instances-container": "^2.0.6",
"simple-node-logger": "^21.8.12"
},
"devDependencies": {
"@types/hapi__inert": "^5.2.4",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
}
}