-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "modern-node-starter",
"version": "1.3.6",
"preferGlobal": true,
"description": "Create your NodeJS easy and fast",
"author": "Sami Maxhuni <[email protected]>",
"private": false,
"keywords": [
"typescript",
"express"
],
"license": "MIT",
"main": "bin/cli.js",
"bin": {
"modern-node-starter": "bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"edit-json-file": "^1.6.0",
"gitignore": "^0.7.0",
"inquirer": "^8.1.2",
"ncp": "^2.0.0",
"ora": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samushi/modern-node-starter"
},
"bugs": {
"url": "https://github.com/samushi/modern-node-starter/issues"
},
"homepage": "https://github.com/samushi/modern-node-starter",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rogerpence/edit-package-json": "^1.1.1",
"husky": "^7.0.2",
"pinst": "^2.1.6"
}
}