-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "eslint-config-facile",
"version": "0.12.0",
"description": "facile.it ESLint extensible configuration",
"repository": "https://github.com/facile-it/eslint-config-facile",
"author": "Iacopo <[email protected]>",
"license": "MIT",
"files": [
"/dist"
],
"main": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./react": "./dist/react.js",
"./node": "./dist/node.js",
"./next": "./dist/next.js",
"./prettierrc.json": "./dist/prettierrc.json"
},
"scripts": {
"tsc": "tsc",
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.build.json && cp .prettierrc.json ./dist/prettierrc.json",
"pretest": "npm run build",
"test": "eslint ./test/. -c ./test/_config.js --ext .ts",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"prettier": "^3.0.3",
"typescript": "^4.0 || ^5.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-fp-ts": "^0.3.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-rxjs": "^5.0.3"
},
"devDependencies": {
"@facile-it/tsconfig": "^0.2.0",
"@types/node": "^20.8.8",
"eslint": "^8.52.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"tags": [
"eslint",
"prettier",
"configuration"
],
"keywords": [
"typescript",
"react",
"eslint",
"prettier",
"extensible",
"configuration"
]
}