-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "ideaz-lowcode",
"type": "module",
"private": true,
"packageManager": "pnpm@7.30.0",
"scripts": {
"start": "pnpm -C packages/playground dev",
"build": "pnpm -C packages/playground build",
"lint": "eslint .",
"lint:style": "stylelint --cache \"**/*.{vue,scss}\""
},
"dependencies": {
"vue": "^3.4.31"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@ideal-schema/element": "workspace:*",
"@ideal-schema/playground": "workspace:*",
"@ideal-schema/playground-components": "workspace:*",
"@ideal-schema/playground-demi": "workspace:*",
"@ideal-schema/playground-store": "workspace:*",
"@ideal-schema/shared": "workspace:*",
"@ideaz/element": "workspace:*",
"@types/js-beautify": "^1.13.3",
"@types/lodash-es": "^4.17.5",
"@types/node": "^16.11.6",
"@unocss/eslint-config": "^0.58.3",
"@vexip-ui/prettier-config": "^0.2.0",
"@vexip-ui/stylelint-config": "^1.0.0",
"@vitejs/plugin-vue": "5.0.2",
"@vitejs/plugin-vue-jsx": "3.1.0",
"@vue/compiler-sfc": "^3.4.31",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-plugin-format": "^0.1.0",
"lint-staged": "^11.2.6",
"lodash-es": "^4.17.21",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.9.0",
"stylelint": "^16.1.0",
"stylelint-prettier": "^5.0.0",
"tsup": "^6.7.0",
"typescript": "^5.0.2",
"unocss": "^0.58.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-macros": "^2.7.9",
"vite": "5.0.10",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}