forked from arco-design/arco-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 990 Bytes
/
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
{
"name": "arco-plugins",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:webpack-react": "yarn workspace example-webpack-react dev"
},
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/*/src/**/*.{ts,js}": [
"eslint",
"prettier --write"
]
},
"keywords": [
"arco",
"arco-design",
"webpack",
"vite",
"plugin"
],
"author": "arco-design",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2"
}
}