-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.19 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
{
"name": "@stackr23/config-eslint",
"version": "2.0.4",
"description": "shareable configs for EsLint and Prettier with vsCode integration",
"main": "index.js",
"scripts": {
"clean": "rimraf build && rimraf bundle",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"lint": "npx eslint . --ext \".js,.jsx,.ts,.tsx\" --fix --format pretty",
"format": "npx prettier \"**/*.{css,scss,md,json,yml}\" --write"
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
},
"author": "Stefan Friedl <[email protected]>",
"license": "MIT",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs",
"targets": {
"esmodules": true
}
}
],
"@babel/preset-react"
]
},
"engines": {
"node": ">=10.0.0"
},
"repository": "https://github.com/stackr23/config-eslint",
"private": false,
"publishConfig": {
"access": "public",
"tag": "latest"
},
"keywords": [
"stackr23",
"eslint",
"shared-config",
"prettier",
"vsCode"
],
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"body-parser": "^1.19.0",
"eslint": "^7.32.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-module-utils": "^2.6.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chalk": "^4.1.2",
"husky": "^7.0.2",
"jest": "^27.1.1",
"react": "^17.0.2"
}
}