forked from KNXCloud/lowcode-engine-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
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
{
"workspaces": [
"packages/*"
],
"scripts": {
"start": "pnpm -C packages/vue-simulator-renderer start",
"build": "lerna run build --stream && lerna run build:umd --stream",
"lint": "pnpm run lint:code && pnpm run lint:type",
"lint:code": "eslint ./packages/**/*.ts && stylelint ./packages/**/*.less",
"lint:type": "lerna run lint:type --stream",
"prepare": "husky install"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.32",
"@babel/core": "^7.18.2",
"@rushstack/eslint-patch": "^1.1.3",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"build-plugin-component": "^1.10.0",
"build-plugin-moment-locales": "^0.1.3",
"build-plugin-react-app": "^1.8.5",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.0",
"husky": "^8.0.1",
"lerna": "^5.1.1",
"lint-staged": "^13.0.1",
"postcss": "8.4.14",
"postcss-html": "^1.4.1",
"postcss-less": "^6.0.0",
"prettier": "^2.6.2",
"stylelint": "^14.9.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-less": "^1.0.5",
"typescript": "^4.7.3",
"vue": "^3.2.37",
"webpack": "^4.46.0"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"*.{less,css}": [
"stylelint --fix"
]
},
"author": "KNXCloud",
"license": "MIT"
}