-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "arco-form-builder",
"version": "0.0.1f5",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build --config build/index.ts",
"preview": "vite preview",
"lint": "npx eslint . --ext .ts,.js,.tsx,.jsx,.vue --fix",
"lint-staged": "npx lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue}": [
"eslint --fix"
]
},
"peerDependencies": {
"@arco-design/web-vue": "^2.41.1",
"axios": "^1.2.2",
"vue": "^3.2.45"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"rollup-plugin-typescript2": "^0.35.0",
"sass": "^1.57.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^3.0.3",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^1.0.11"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.1.4",
"codemirror": "^6.0.1",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"vue-codemirror": "^6.1.1",
"vuedraggable": "^4.1.0"
}
}