-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 747 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 747 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
{
"name": "demo-devcoach-122",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:prod": "NODE_ENV=production node ./src/server.js",
"start:dev": "nodemon ./src/server.js",
"lint": "eslint ./src",
"migrate": "node-pg-migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.0.2"
},
"dependencies": {
"@antoniogiordano/hacli": "^1.0.2",
"@hapi/hapi": "^21.3.2",
"@hapi/jwt": "^3.2.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"nanoid": "^3.3.7",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.3"
}
}