forked from XPoet/picx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "picx",
"version": "1.2.0",
"private": false,
"author": "XPoet",
"license": "MIT",
"bugs": {
"url": "https://github.com/XPoet/picx/issues"
},
"homepage": "https://github.com/XPoet/picx#readme",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"release": "git push --tag && git push -u origin master",
"format": "prettier --write",
"prepare": "husky install"
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
},
"dependencies": {
"axios": "^0.21.4",
"element-plus": "^1.1.0-beta.16",
"vue": "^3.2.18",
"vue-router": "^4.0.11",
"vuex": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.2.18",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.2.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.18.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"stylus": "^0.54.8",
"typescript": "^4.1.5",
"vite": "^2.5.10",
"vite-plugin-element-plus": "^0.0.12",
"vite-plugin-pwa": "^0.11.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}