-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "create-cli",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"create-react": "node tasks/create-react.js",
"create-react-vite": "node tasks/create-react-vite.js",
"create-next": "node tasks/create-next.js",
"create-umi": "node tasks/create-umi.js",
"create-umi-pro": "node tasks/create-umi-pro.js",
"build": "node esbuild.js",
"publish": "npm run build && lerna publish --force-publish",
"prepare": "husky install",
"commit": "npx git-cz"
},
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^9.3.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"commitizen": "^1.0.4",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^8.0.1",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": "^13.0.2",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write --ignore-unknown"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}