-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 KB
/
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
40
41
42
{
"name": "forum-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint --fix --ext .js ./src",
"start": "node src/app.js",
"start:dev": "nodemon src/app.js",
"test": "jest --coverage --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",
"migrate:down": "npm run migrate down 2500 && npm run migrate:test down 2500",
"migrate:up": "npm run migrate up && npm run migrate:test up"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^20.1.5",
"@hapi/jwt": "^2.0.1",
"auto-bind": "^4.0.0",
"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": "^8.45.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^27.0.6",
"node-pg-migrate": "^5.10.0",
"nodemon": "^2.0.9"
}
}