-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "kickoff-react-app",
"version": "1.0.0",
"description": "a cli tool for generator react boilerplate",
"author": "wjgogogo <[email protected]>",
"homepage": "https://github.com/wjgogogo/kickoff-react-app#readme",
"keywords": [
"node",
"cli tool",
"react boilerplate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wjgogogo/kickoff-react-app.git"
},
"bugs": {
"url": "https://github.com/wjgogogo/kickoff-react-app/issues"
},
"license": "MIT",
"scripts": {
"start": "npm run build && node ./bin/kra.js",
"build": "tsc"
},
"bin": {
"kickoff-react-app": "./bin/kra.js",
"kra": "./bin/kra.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=10"
},
"files": [
"bin",
"lib"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.22",
"@types/semver": "^7.3.4",
"@types/validate-npm-package-name": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.1",
"download-git-repo": "^3.0.2",
"inquirer": "^7.3.3",
"ora": "^5.3.0",
"semver": "^7.3.4",
"validate-npm-package-name": "^3.0.0"
}
}