-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "vee-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-dev": "nodemon ./src/server.js",
"start": "node ./src/server.js",
"migrate": "node-pg-migrate",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C22-PS001-Capstone/Vee-API.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/C22-PS001-Capstone/Vee-API/issues"
},
"homepage": "https://github.com/C22-PS001-Capstone/Vee-API#readme",
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.16"
},
"dependencies": {
"@hapi/hapi": "^20.2.2",
"@hapi/jwt": "^2.1.1",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"joi": "^17.6.0",
"nanoid": "^3.3.4",
"node-fetch": "^2.6.1",
"node-pg-migrate": "^6.2.1",
"pg": "^8.7.3"
}
}