-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 KB
/
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
32
33
34
35
36
37
38
39
40
{
"name": "hadis-api-id",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"author": "R.M. Reza ([email protected])",
"url": "https://github.com/renomureza/hadis-api-id/issues",
"repository": {
"type": "git",
"url": "https://github.com/renomureza/hadis-api-id.git"
},
"scripts": {
"start": "node .",
"dev": "nodemon src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"prepare": "npx husky install"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"winston": "^3.6.0",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"prettier": "^2.6.1"
}
}