forked from fucheng830/amis-admin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "amis-admin-vue",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint --ext .js --fix&&vue-cli-service lint",
"proxy": "node api/proxy.js",
"prepare": "husky install",
"lint:style": "stylelint **/*.{vue,scss} --fix",
"commit": "git-cz"
},
"author": "h7ml <[email protected]>",
"keywords": [
"vue",
"amis",
"amis-admin-vue",
"renderer",
"json",
"schema"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/h7ml/amis-admin-vue.git"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"axios": "^0.27.2",
"bootstrap": "^5.1.3",
"copy-to-clipboard": "3.3.1",
"core-js": "^3.22.4",
"font-awesome": "^4.7.0",
"qs": "6.10.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"vue": "^2.6.14",
"vue-amis-sdk": "^1.10.2",
"vue-router": "2.6.0",
"vuera": "^0.2.7",
"vuex": "3.6.2",
"vuex-persistedstate": "^2.4.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^15.0.0",
"@popperjs/core": "^2.10.2",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-pwa": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"commitlint": "^15.0.0",
"commitlint-config-cz": "^0.13.2",
"compression-webpack-plugin": "^6.1.1",
"cz-conventional-changelog": "^3.3.0",
"element-ui": "^2.15.8",
"esbuild-loader": "^2.18.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-vue": "^7.17.0",
"http-proxy-middleware": "^2.0.6",
"husky": "^7.0.4",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rc-input-number": "7.3.11",
"register-service-worker": "^1.7.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.5.0",
"typescript": "^4.5.2",
"vue-eslint-parser": "^6.0.0",
"vue-template-compiler": "^2.6.11",
"webpack": "4.46.0",
"webpackbar": "^5.0.0-3"
},
"homepage": "https://amis-admin-vue.vercel.app",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 3.0.0"
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}