-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "ex-design-vue2",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "pnpm run -C examples dev",
"build": "pnpm run -C examples build",
"docs:dev": "pnpm run -C docs docs:dev",
"docs:build": "pnpm run -C docs docs:build",
"packages:build": "pnpm run -C packages build",
"prepare": "husky install",
"lint": "eslint ./ --ext .js,.ts,.jsx,.tsx,.vue && prettier --write --ignore-unknown",
"lint:style": "stylelint \"./**/*.{css,less,vue,html}\" --fix"
},
"dependencies": {
"@ex-design/component": "workspace:^*",
"@juggle/resize-observer": "^3.4.0",
"date-fns": "^2.29.3",
"element-ui": "^2.15.13",
"lodash-es": "^4.17.21",
"vxe-table": "^3.6.11",
"xe-utils": "^3.5.7"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "2.8.4",
"sass": "^1.58.3",
"stylelint": "^15.2.0",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-recommended-scss": "^9.0.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^4.4.0"
},
"lint-staged": {
"*.{vue,js,ts,tsx,jsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"vue"
]
}
}
}