-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3 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
{
"name": "hex-lowcode-engine",
"private": true,
"version": "1.0.1",
"author": {
"name": "junjieyuan",
"email": "[email protected]"
},
"description": "HEX低代码引擎",
"keywords": [
"hex",
"hex-lowcode-engine"
],
"type": "module",
"main": "./lib/hex-lowcode-engine.umd.cjs",
"module": "./lib/hex-lowcode-engine.js",
"exports": {
".": {
"import": "./lib/hex-lowcode-engine.js",
"require": "./lib/hex-lowcode-engine.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"lib": "vite build --config vite.config.npm.ts",
"preview": "vite preview",
"prepare": "husky install",
"lint:eslint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"lint:prettier": "lint:prettier ./**/*.{vue,ts,tsx,js,jsx,css,less,scss,json,md}",
"lint:stylelint": "stylelint \"**/*.{vue,less,postcss,css,scss}\" --fix",
"lint": "lint-staged --allow-empty"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"@vueuse/math": "^10.2.1",
"ant-design-vue": "^4.0.0",
"axios": "^1.4.0",
"commitizen": "^4.2.5",
"lodash-es": "^4.17.21",
"monaco-editor": "^0.34.1",
"vue": "^3.2.37",
"vue-json-pretty": "^2.2.3",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/less": "^3.0.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.5",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"autoprefixer": "^10.4.12",
"cz-git": "^1.3.12",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.6.0",
"husky": "^8.0.0",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.0",
"stylelint": "^14.14.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix",
"stylelint --fix"
],
"*.{html,vue,vss,sass,less}": [
"prettier --write",
"stylelint --fix"
],
"package.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}