-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 857 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 857 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
{
"name": "studytrack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-prod": "NODE_ENV=production node ./src/index.js",
"start-dev": "nodemon ./src/index.js",
"migrate": "node-pg-migrate",
"test": "npx jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"@hapi/vision": "^7.0.1",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"hapi-swagger": "^16.0.1",
"jest": "^29.5.0",
"joi": "^17.9.2",
"nanoid": "^3.3.6",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.0",
"supertest": "^6.3.3"
},
"devDependencies": {
"nodemon": "^2.0.22",
"prettier": "^2.8.8"
}
}