-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
69
70
71
72
73
74
75
76
77
78
{
"name": "eslint-config-altnext",
"version": "2.2.2",
"repository": {
"type": "git",
"url": "ssh://[email protected]/altnext/eslint-config-altnext.git"
},
"author": "Altnext Gorillaz",
"eslintIgnore": [
"dist",
"node_modules"
],
"license": "MIT",
"main": "./index.js",
"files": [
"**/*.js"
],
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"deduplicate": "yarn-deduplicate -s fewer",
"lint": "eslint . --cache",
"prelint": "yarn build",
"prepare": "husky install",
"prerelease": "yarn build",
"pretest": "yarn build",
"release": "changeset publish",
"test": "jest --ci",
"type": "tsc --noEmit --noImplicitAny"
},
"resolutions": {
"prettier": "2.5.1"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-playwright": "0.6.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-unicorn": "37.0.1",
"prettier": "2.5.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.2",
"@changesets/cli": "2.19.0",
"@commitlint/cli": "16.0.1",
"@commitlint/config-conventional": "16.0.0",
"@jest/types": "27.4.2",
"@types/eslint": "7.29.0",
"@types/jest": "27.4.0",
"cspell": "5.14.0",
"husky": "7.0.4",
"jest": "27.4.5",
"jest-junit": "13.0.0",
"lint-staged": "12.1.4",
"ts-jest": "27.1.2",
"typescript": "4.5.4",
"yarn-deduplicate": "3.1.0"
},
"lint-staged": {
"**/*": [
"cspell lint"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint --quiet --cache"
]
}
}