-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
68 lines (68 loc) · 2.37 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
{
"name": "open-data-v",
"version": "0.0.0",
"private": true,
"scripts": {
"bootstrap": "pnpm install",
"dev": "npm -C examples run dev",
"build": "npm -C examples run build",
"build:lib": "pnpm recursive run build:lib",
"lint": "eslint --ext .js,.ts,.vue,.tsx packages/base/src packages/ui/src packages/scripts/src packages/data/src packages/designer/src examples/src docs/ resource/",
"lint:fromat": "prettier -c --parser typescript \"{packages,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "eslint --fix --ext .js,.ts,.vue,.tsx packages/base/src packages/ui/src packages/scripts/src packages/data/src packages/designer/src examples/ docs/ resource/",
"prepare": "husky install",
"reinstall": "rimraf pnpm-lock.yaml && rimraf packages/**/node_modules && rimraf examples/node_modules && rimraf node_modules && pnpm bootstrap",
"publish": "pnpm -r run publish"
},
"license": "Apache-2.0",
"dependencies": {
"vue": "^3.4.35",
"vue-router": "^4.4.2"
},
"devDependencies": {
"@types/node": "^16.18.104",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"autoprefixer": "^10.4.20",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.10.0",
"eslint-define-config": "^1.24.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-vue": "^9.27.0",
"husky": "^7.0.4",
"less": "^4.2.0",
"postcss": "^8.4.40",
"postcss-html": "^1.7.0",
"postcss-less": "^6.0.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"stylelint": "^15.11.0",
"stylelint-config-recommended-vue": "^1.5.0",
"tailwindcss": "^3.4.7",
"terser": "^5.31.3",
"typescript": "^4.9.5",
"vite": "^5.3.5",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-mock": "^2.9.8",
"vite-plugin-vue-markdown": "^0.22.6",
"vue-eslint-parser": "^7.11.0",
"vue-tsc": "^1.8.27"
},
"prettier": {
"useTabs": false,
"tabWidth": 2,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"semi": false,
"endOfLine": "lf"
}
}