-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "@dragon-app/root",
"private": true,
"version": "1.0.0",
"description": "dragon app",
"engines": {
"node": "> 16.0.0",
"ts-node": "> 10.0.0",
"yarn": "> 3.0"
},
"type": "module",
"scripts": {
"bootstrap": "pnpm dlx cross-env ELECTRON_MIRROR=http://npm.taobao.org/mirrors/electron/ pnpm install",
"dev": "node --loader ts-node/esm ./scripts/dev/index.ts",
"build": "dragon-cli build",
"release": "dragon-cli release",
"prepare": "husky install",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/longshihui/dragon.git"
},
"author": "longshihui",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/longshihui/dragon/issues"
},
"homepage": "https://github.com/longshihui/dragon#readme",
"browserslist": [
"Chrome 96"
],
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"element-plus": "^2.2.9",
"pinia": "^2.0.14",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"vue": "^3.2.37"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^18.0.3",
"@vitejs/plugin-vue": "^2.3.3",
"commitizen": "^4.2.4",
"conventional-changelog": "^3.1.25",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^2.9.14"
}
}