-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
{
"name": "zcm-admin-ui",
"private": true,
"version": "0.0.4",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"list": "lerna list",
"dev": "webpack-dev-server --progress --config build/webpack.config.dev.js",
"build": "webpack --config build/webpack.config.prod.js && lerna run --scope admin-ui-styles build",
"reinstall": "rimraf node_modules && yarn",
"bootstrap": "lerna clean -y && lerna bootstrap",
"lint:packages": "eslint --ext .ts,.js,.vue,.css,.json,.scss packages --fix",
"lint:website": "eslint --ext .ts,.js,.vue,.css,.json,.scss website --fix",
"lint": "yarn lint:packages && yarn lint:website",
"build:docs": "webpack --config build/webpack.config.dev.js",
"gen:icon": "node generateIconName.js"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@vue/compiler-sfc": "^3.0.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"file-loader": "^6.2.0",
"highlight.js": "^10.7.2",
"html-webpack-plugin": "^4.3.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"markdown-it": "^12.0.6",
"markdown-it-anchor": "^5.3.0",
"markdown-it-chain": "^1.3.0",
"markdown-it-container": "^3.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^21.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"svg-inline-loader": "^0.8.2",
"transliteration": "^2.2.0",
"ts-loader": "^8.0.3",
"typescript": "^4.2.4",
"vue": "^3.0.11",
"vue-i18n": "^9.1.6",
"vue-loader": "^16.2.0",
"vue-router": "^4.0.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3",
"yorkie": "^2.0.0"
},
"workspaces": [
"packages/*"
],
"gitHooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn lint",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/lost-dream/zcm-admin-ui.git"
}
}