-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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
{
"name": "@geprog/eslint-config",
"version": "0.0.0-semantic-release",
"description": "ESLint config for Typescript, Vue.js and Jest",
"homepage": "https://geprog.com",
"repository": "github:geprog/eslint-config",
"license": "MIT",
"files": [
"/index.js",
"/jest.js",
"/prettier.js",
"/vue.js",
"/patch"
],
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"release": "semantic-release",
"test": "cd test && pnpm eslint --format codeframe . > eslint-output.snap.tmp || true && diff eslint-output.snap eslint-output.snap.tmp && rm eslint-output.snap.tmp",
"test:lint": "cd test && pnpm eslint --format codeframe .",
"test:update": "cd test && pnpm eslint --format codeframe . > eslint-output.snap || true",
"typecheck": "tsc"
},
"dependencies": {
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@rushstack/eslint-patch": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-vue": "^9.8.0",
"eslint-plugin-vue-scoped-css": "^2.2.0",
"vue-eslint-parser": "^9.1.0"
},
"devDependencies": {
"@geprog/semantic-release-config": "1.0.0",
"@typescript-eslint/experimental-utils": "5.44.0",
"eslint": "8.28.0",
"eslint-formatter-codeframe": "7.32.1",
"prettier": "2.8.0",
"semantic-release": "19.0.5",
"typescript": "4.9.3"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0"
},
"engines": {
"pnpm": "7"
}
}