-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1004 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
34
35
36
37
38
39
40
{
"name": "forum-api",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/app.js",
"start:dev": "nodemon src/app.js",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"migrate": "node-pg-migrate",
"migrate:test": "node-pg-migrate --envPath .test.env",
"lint": "eslint ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^5.0.1",
"jsonwebtoken": "^9.0.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.6.1",
"instances-container": "^2.0.6",
"nanoid": "^5.0.9",
"pg": "^8.16.3"
},
"devDependencies": {
"eslint": "^9.38.0",
"@eslint/js": "^9.38.0",
"@vitest/eslint-plugin": "^1.3.26",
"eslint-config-dicodingacademy": "^0.9.5",
"node-pg-migrate": "^8.0.4",
"nodemon": "^3.1.9",
"vitest": "^4.0.17",
"@vitest/coverage-v8": "^4.0.17",
"supertest": "^7.1.4"
}
}