-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"type": "module",
"name": "generator-dandelion-reactpack",
"version": "0.1.5",
"license": "MIT",
"keyword": "yeoman-generator",
"scripts": {
"prepare": "husky install",
"commit": "cz",
"pre-release": "node ./scripts/release/release.js",
"release": "git commit --allow-empty -m \"chore: release 0.1.5\" -m \"Release-As: 0.1.5\" && npm run deploy-release",
"deploy-release": "git push origin main",
"update": "git pull"
},
"repository": {
"type": "git",
"url": "https://github.com/WaveOfDandelions/generator-dandelion-reactpack"
},
"files": [
"./generators/app/templates/.gitignore",
"**/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@npmcli/package-json": "^5.0.0",
"commitizen": "^4.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
},
"dependencies": {
"yeoman-generator": "^5.9.0"
}
}