-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 916 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
31
32
33
34
35
{
"name": "auth-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/jwt": "^3.2.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"instances-container": "^2.0.6",
"nanoid": "^3.3.6",
"pg": "^8.11.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"node-pg-migrate": "^6.2.2",
"nodemon": "^2.0.22"
}
}