-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 857 Bytes
/
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
{
"name": "notes-app-back-end",
"version": "1.0.0",
"description": "This repository made for learning back-end path in [dicoding](https://www.dicoding.com/) using nodejs",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/server.js",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gavrillamahdi/notes-app-back-end.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gavrillamahdi/notes-app-back-end/issues"
},
"homepage": "https://github.com/gavrillamahdi/notes-app-back-end#readme",
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.16"
},
"dependencies": {
"@hapi/hapi": "^20.2.2",
"nanoid": "^3.3.3"
}
}