This repository was archived by the owner on Dec 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.22 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
{
"name": "@vanntile/create-edo-app",
"version": "0.3.1",
"description": "Opinionated Express app template with Docker and OpenAPI.",
"author": {
"name": "vanntile",
"url": "https://vanntile.com"
},
"license": "MIT",
"homepage": "https://github.com/vanntile/create-edo-app#readme",
"repository": {
"type": "git",
"url": "https://github.com/vanntile/create-edo-app.git"
},
"keywords": [
"express",
"openapi",
"docker",
"template",
"boilerplate",
"scaffold",
"rest",
"es-module"
],
"engines": {
"node": "14.x",
"npm": "7.x"
},
"bin": {
"create-edo-app": "./bin/createEdoApp.js"
},
"scripts": {
"prepare": "husky install",
"release": "standard-version --no-verify --sign",
"test": "echo 'OK'"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --staged --write"
]
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.1.0",
"create-package-json": "^0.1.2",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"husky": "^7.0.2"
}
}