-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1000 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
{
"name": "forum-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 -i",
"test:watch:change": "jest --watch --setupFiles dotenv/config -i",
"test:watch": "jest --watchAll --coverage --setupFiles dotenv/config -i",
"migrate": "node-pg-migrate",
"migrate:test": "node-pg-migrate -f config/database/test.json"
},
"keywords": [],
"author": "Jidan",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^20.1.5",
"@hapi/jwt": "^2.0.1",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"instances-container": "^2.0.3",
"nanoid": "^3.1.23",
"pg": "^8.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.6",
"node-pg-migrate": "^5.10.0",
"nodemon": "^2.0.9"
}
}