-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "clean-api-generate",
"version": "1.0.0",
"description": "The powerful tool to generate RESTful API based-on Clean Architecture with NodeJS",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettyme": "prettier --write \"./**/*.{js,jsx,json}\""
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/fpo-project/clean-api-generate.git"
},
"keywords": [
"fpo",
"api",
"genrate",
"tool",
"nodejs"
],
"author": "Phuong Duong",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/fpo-project/clean-api-generate/issues"
},
"homepage": "https://gitlab.com/fpo-project/clean-api-generate#readme",
"dependencies": {
"async": "^3.2.1",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"express": "^4.17.1",
"figlet": "^1.2.3",
"mongodb": "^3.6.9",
"mongoose": "^6.0.7",
"npm": "^6.14.7",
"require": "^2.4.20",
"type-of-is": "^3.5.1",
"underscore": "^1.13.1",
"url": "^0.11.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"eslint": "^7.32.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write"
]
}
}