-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"private": true,
"main": "index.js",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cd packages/playground && yarn dev",
"lint": "eslint --fix --no-error-on-unmatched-pattern **/*.{js,ts,tsx,jsx,vue}"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@babel/eslint-plugin": "^7.14.5",
"@vue/eslint-config-typescript": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.29.0",
"eslint-plugin-vue": "^7.11.1",
"lerna": "^3.16.4",
"rollup": "^2.52.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.2",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"husky": "^4.0.0",
"lint-staged": "^11.0.0",
"minimist": "^1.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx,vue}": [
"eslint --fix"
]
}
}