-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 847 Bytes
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
{
"name": "clean-architecture-node-js",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node src/app.js",
"start:dev": "nodemon src/app.js",
"test": "jest --setupFiles dotenv/config",
"test:watch": "jest --watchAll --coverage --setupFiles dotenv/config",
"migrate": "node-pg-migrate",
"migrate:test": "node-pg-migrate -f config/database/test.json",
"migrate:down:test": "node-pg-migrate-down -f config/database/test.json"
},
"dependencies": {
"@hapi/hapi": "^20.2.1",
"@hapi/jwt": "^2.1.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"instances-container": "^2.0.4",
"nanoid": "^3.1.30",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"node-pg-migrate": "^6.0.0"
}
}