-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.48 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
57
{
"name": "dicoding_openmusic_api",
"version": "3.0.0",
"description": "Submission for backend dicoding class ",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"start-dev": "nodemon src/index.js",
"start-prod": "NODE_ENV=production node src/index.js",
"migrate": "node-pg-migrate",
"test": "jest -i",
"test-coverage": "jest -i --coverage",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix"
},
"keywords": [
"dicoding",
"belajar fundamendal aplikasi backend",
"openmusic_api",
"api",
"submission"
],
"author": "Hidayat Chandra",
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"amqplib": "^0.10.3",
"auto-bind": "^4.0.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"joi": "^17.10.1",
"nanoid": "^3.3.6",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.3",
"redis": "^4.6.10"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@types/hapi": "^18.0.10",
"@types/jest": "^29.5.4",
"@types/supertest": "^2.0.14",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"c8": "^8.0.1",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
}
}