-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "eslint-config-dabapps",
"version": "10.0.0",
"description": "DabApps ESLint Configuration",
"main": ".eslintrc.json",
"scripts": {
"jsonlint": "find . -path ./node_modules -prune -o -type f -name '*.json' -exec jsonlint -q '{}' \\;",
"test-config": "./scripts/test-config",
"test": "npm run prettier-check && npm run jsonlint && npm run test-config && npm run eslint-check",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx,json}'",
"prettier-check": "prettier --check '**/*.{ts,tsx,js,jsx,json}'",
"eslint-check": "eslint-config-prettier .eslint.json",
"eslint-deprecated": "env ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=true eslint-find-rules --deprecated .eslintrc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/dabapps/eslint-config-dabapps"
},
"keywords": [
"eslint",
"linting",
"react",
"react-native",
"es9",
"javascript",
"typescript",
"config",
"configuration",
"dabapps"
],
"author": "DabApps",
"license": "BSD",
"bugs": {
"url": "https://github.com/dabapps/eslint-config-dabapps/issues"
},
"homepage": "https://github.com/dabapps/eslint-config-dabapps",
"dependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.7.1",
"typescript": "*"
},
"devDependencies": {
"@types/jquery": "^3.5.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint-find-rules": "^4.1.0",
"jquery": "^3.4.1",
"jsonlint": "^1.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.74.0"
}
}