-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 931 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
{
"name": "notes-app-back-end",
"version": "1.0.0",
"description": "Learn to Make Back-End Apps for Beginners",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./src/server.js",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eby8zevin/notes-app-back-end.git"
},
"keywords": [
"Dicoding"
],
"author": "Ahmad Abu Hasan",
"license": "ISC",
"bugs": {
"url": "https://github.com/eby8zevin/notes-app-back-end/issues"
},
"homepage": "https://github.com/eby8zevin/notes-app-back-end#readme",
"devDependencies": {
"eslint": "^9.39.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"nodemon": "^2.0.19",
"got": "^12.5.3",
"ansi-regex": "^4.1.1"
},
"dependencies": {
"@hapi/hapi": "^21.4.8",
"nanoid": "^3.3.18"
}
}