-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
151 lines (151 loc) · 4.01 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "eslint-config-ackama",
"version": "3.3.0",
"description": "Standard ESLint configurations for Ackama projects.",
"homepage": "https://github.com/ackama/eslint-config-ackama#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ackama/eslint-config-ackama.git"
},
"license": "ISC",
"author": "Gareth Jones",
"files": [
"@typescript-eslint.js",
"flowtype.js",
"index.js",
"jest.js",
"react.js"
],
"scripts": {
"lint": "eslint . --ext js,ts",
"release": "semantic-release -r git+ssh://git@github.com/ackama/eslint-config-ackama.git",
"test": "jest",
"tools:generate-configs-list": "ts-node -T tools/generate-configs-list.ts",
"typecheck": "tsc --noEmit"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "prettier-config-ackama",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx",
"node"
],
"resetMocks": true,
"restoreMocks": true,
"testEnvironment": "node",
"transform": {
"\\.tsx?": [
"ts-jest",
{
"isolatedModules": true
}
]
}
},
"dependencies": {
"eslint-config-prettier": "^8.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/eslint": "^8.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^4.3.0",
"jest": "^29.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"prettier-config-ackama": "^1.0.0",
"semantic-release": "^24.0.0",
"semver": "^7.3.5",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@babel/eslint-parser": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0 || ^7.0.0",
"@typescript-eslint/parser": "^6.0.0 || ^7.0.0",
"eslint": ">= 7.0",
"eslint-plugin-eslint-comments": ">= 3",
"eslint-plugin-flowtype": "^8.0.0",
"eslint-plugin-import": ">= 2.21",
"eslint-plugin-jest": "^27.0.0 || ^28.0.0",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-node": ">= 2.21",
"eslint-plugin-prettier": ">= 3.1",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0 || ^5.0.0",
"prettier": ">= 2.0"
},
"peerDependenciesMeta": {
"@babel/eslint-parser": {
"optional": true
},
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"eslint-plugin-flowtype": {
"optional": true
},
"eslint-plugin-jest": {
"optional": true
},
"eslint-plugin-jest-formatting": {
"optional": true
},
"eslint-plugin-jsx-a11y": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
}
}
}