-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
97 lines (97 loc) · 3.03 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev:editor": "pnpm -C packages/editor dev",
"dev:preview": "pnpm -C packages/preview dev",
"dev:docs": "pnpm -C docs dev",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 && pretty-quick --check",
"lint:fix": "eslint --fix . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json && pretty-quick",
"build:editor": "pnpm -C packages/editor build-only",
"build:preview": "pnpm -C packages/preview build-only",
"build:docs": "pnpm -C docs build",
"cz": "czg",
"format": "prettier --write .",
"stub": "pnpm run -r --parallel stub",
"prepare": "husky install",
"preinstall": "npx --yes only-allow pnpm",
"postinstall": "pnpm -C internal/vite-plugin-monaco-editor-nls build && pnpm stub"
},
"dependencies": {
"@cow-low-code/constant": "workspace:*",
"@cow-low-code/event-action": "workspace:*",
"@cow-low-code/library": "workspace:*",
"@cow-low-code/types": "workspace:*",
"@cow-low-code/utils": "workspace:*",
"@icon-park/vue-next": "^1.4.2",
"@vueuse/core": "^9.0.2",
"@vueuse/integrations": "^9.1.0",
"crypto-js": "^4.1.1",
"element-plus": "^2.2.14",
"json-stringify-pretty-compact": "^4.0.0",
"lodash-es": "^4.17.21",
"pinia": "^2.0.16",
"pinia-plugin-persist": "^1.0.0",
"qrcode": "^1.5.1",
"uuid": "^8.3.2",
"vue": "^3.2.37",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@cow-low-code/build-utils": "workspace:*",
"@element-plus/eslint-config": "^0.0.20220803",
"@types/crypto-js": "^4.1.1",
"@types/node": "^16.11.47",
"@types/sass": "^1.43.1",
"@types/sortablejs": "^1.13.0",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-vue": "^3.0.1",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.8",
"consola": "^2.15.3",
"czg": "^1.3.10",
"eslint": "^8.21.0",
"eslint-define-config": "^1.6.0",
"eslint-plugin-markdown": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup-plugin-visualizer": "^5.7.1",
"sass": "^1.54.0",
"tailwindcss": "^3.1.7",
"typescript": "~4.7.4",
"unplugin-auto-import": "^0.10.3",
"unplugin-element-plus": "^0.4.1",
"unplugin-icons": "^0.14.8",
"unplugin-vue-components": "^0.21.2",
"unplugin-vue-define-options": "^0.7.3",
"unplugin-vue-macros": "^0.7.3",
"vite-plugin-inspect": "^0.6.0",
"vite-plugin-style-import": "^2.0.0",
"vite-plugin-webpackchunkname": "^0.1.1",
"vue-tsc": "^0.38.8"
},
"engines": {
"node": ">= 16",
"pnpm": ">=7"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
"vue",
"vite",
"@algolia/client-search"
]
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
}
}