-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "create-compositive-react-app-cli",
"version": "2.0.1",
"description": "Command line interface for React family bucket integrates",
"main": "index.js",
"bin": {
"ccra": "./bin/index.js"
},
"scripts": {
"commit": "git-cz",
"build": "rm -rf dist && tsc && tsc-alias",
"prepublish": "pnpm build"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.2.0",
"ejs": "^3.1.6",
"execa": "^4.0.0",
"inquirer": "^8.0.0",
"lodash": "^4.17.21",
"ora": "~4.0.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/inquirer": "^8.2.1",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"tsc-alias": "^1.7.0"
},
"files": [
"dist",
"templates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ericlee33/create-compositive-react-app-cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ericlee33/create-compositive-react-app-cli/issues"
},
"homepage": "https://github.com/ericlee33/create-compositive-react-app-cli#readme",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}