-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "@emanprague/eslint-config",
"version": "4.0.0",
"description": "ESlint and prettier configurations",
"main": "eslint-config.js",
"repository": "https://github.com/eManPrague/eslint-config.git",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "rm -rf dist && mkdir dist && cp prettier-config.js dist/ && cp eslint-default.js dist/"
},
"keywords": [
"eslint",
"shared",
"rules"
],
"author": "Augustin Sulc <[email protected]>",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vitest": "^0.3.20",
"typescript": "^5.3.3"
},
"peerDependencies": {
"eslint": "^8.01.0",
"jest": "^29.7.0",
"prettier": "^2.8.0"
}
}