-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.5 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dicoding-forum-api",
"version": "1.2.2",
"type": "commonjs",
"main": "src/main.js",
"description": "Back-End Expert project assignment from dicoding.com",
"repository": "https://github.com/KeidsID/dicoding-forum-api",
"author": "KeidsID",
"license": "MIT",
"keywords": [
"hapi-js",
"postgre-sql",
"jest"
],
"scripts": {
"start": "npx tsc -w",
"dev": "npx nodemon",
"build": "tsc",
"test": "jest --coverage -i",
"test:no-coverage": "jest -i",
"test:watch": "jest --watchAll -i",
"lint": "eslint src/** tests/**",
"pgm": "node-pg-migrate",
"pgm:test": "node-pg-migrate -f config/db/test.json"
},
"dependencies": {
"@hapi/hapi": "^20.1.5",
"@hapi/jwt": "^2.0.1",
"bcrypt": "^5.0.1",
"bottlejs": "^2.0.1",
"dotenv": "^10.0.0",
"joi": "^17.11.0",
"nanoid": "^3.1.23",
"pg": "^8.6.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/hapi": "^18.0.13",
"@types/hapi__jwt": "^2.0.5",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.0",
"node-pg-migrate": "^5.10.0",
"nodemon": "^2.0.9",
"ts-jest": "^29.1.1",
"ts-jest-mocker": "^0.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}