-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "nodejs-clean-architecture-app",
"version": "1.0.0",
"description": "A simple API built with Node.js/Hapi.js that follows DDD + Clean Architecture principles",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"start": "node index.js",
"test": "jest",
"coverage": "jest --coverage"
},
"author": "Jérémy Buget",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jbuget/nodejs-clean-architecture-app.git"
},
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/good": "^8.2.0",
"@hapi/good-console": "^8.1.0",
"@hapi/good-squeeze": "^5.2.0",
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^5.2.0",
"@hapi/vision": "^5.5.2",
"blipp": "^4.0.0",
"hapi-swagger": "^9.4.2",
"jsonwebtoken": "^8.3.0",
"require-directory": "^2.1.1",
"sequelize": "^5.15.1"
},
"devDependencies": {
"jest": "^24.8.0",
"nodemon": "^1.19.0",
"sqlite3": "^4.0.7"
},
"engines": {
"node": ">=10.15",
"npm": ">=6.4"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/coverage/**"
],
"testURL": "http://localhost/"
}
}