-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 2.57 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@fullstacksjs/eslint-config",
"version": "11.3.1",
"license": "MIT",
"author": "fullstacks <[email protected]>",
"description": "fullstacks eslint config",
"repository": {
"type": "git",
"url": "git+https://github.com/fullstacksjs/eslint-config.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"src",
"cjs"
],
"scripts": {
"lint": "eslint .",
"spell": "cspell ./* --no-progress",
"test": "echo 0",
"build": "unbuild",
"postbuild": "./postbuild",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"pre-commit": "npm run test && lint-staged"
},
"main": "./cjs/index.js",
"module": "./src/index.mjs",
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./cjs/index.js"
}
},
"dependencies": {
"@eslint-react/eslint-plugin": "1.19.0",
"@next/eslint-plugin-next": "15.1.0",
"deepmerge": "4.3.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-import-x": "4.5.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "17.15.0",
"eslint-plugin-perfectionist": "4.3.0",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-storybook": "0.11.1",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-vitest": "0.5.4",
"globals": "15.13.0",
"local-pkg": "0.5.1",
"typescript-eslint": "8.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/eslint": "9.6.1",
"cspell": "8.16.1",
"eslint": "9.17.0",
"eslint-find-rules": "4.2.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"np": "10.1.0",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"unbuild": "^2"
},
"peerDependencies": {
"cypress": ">=8",
"eslint": "^9",
"prettier": "3",
"react": ">=16",
"typescript": ">=4.7"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"react": {
"optional": true
},
"cypress": {
"optional": true
},
"jest": {
"optional": true
}
}
}