-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"scripts": {
"build": "rm -rf dist && NODE_ENV=production tsc",
"format": "prettier --write . --log-level=warn",
"format-verify": "prettier --check . --log-level=warn",
"lint": "eslint . --fix && npm run build && publint --strict",
"prepublishOnly": "npm run verify && npm run build",
"start-building": "rm -rf dist && NODE_ENV=production tsc --watch",
"test": "ava",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run lint && npm run test && npm run format-verify"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@typescript-eslint/utils": "^8.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^4.8.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-sort-keys-plus": "^1.4.0",
"eslint-plugin-typescript-sort-keys": "^3.3.0"
},
"devDependencies": {
"@denis-sokolov/eslint-plugin": "^16.0.0",
"@types/node": "^18.19.75",
"ava": "^6.2.0",
"eslint": "^8.57.1",
"prettier": "^3.5.0",
"publint": "^0.2.12",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"description": "",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*"
],
"license": "ISC",
"main": "dist/index.js",
"name": "@denis-sokolov/eslint-plugin",
"peerDependencies": {
"eslint": "^8.0.0"
},
"prettier": {},
"repository": {
"type": "git",
"url": "git+https://github.com/denis-sokolov/eslint-plugin.git"
},
"sideEffects": false,
"type": "commonjs",
"version": "18.1.1"
}