-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.91 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
{
"name": "@prezly/eslint-config",
"version": "6.0.0",
"description": "ESLint, Prettier and StyleLint configs used for Prezly TypeScript projects",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./lib/prettier": "./lib/prettier.cjs",
"./prettier": "./lib/prettier.cjs",
"./lib/react": "./lib/react.js",
"./react": "./lib/react.js",
"./lib/stylelint": "./lib/stylelint.cjs",
"./stylelint": "./lib/stylelint.cjs",
"./lib/nextjs": "./lib/nextjs.js",
"./nextjs": "./lib/nextjs.js",
"./lib/nextjs-tailwind": "./lib/nextjs-tailwind.js",
"./nextjs-tailwind": "./lib/nextjs-tailwind.js"
},
"files": [
"lib"
],
"scripts": {
"test": "echo \"Tests? maybe next time ;)\" && exit 0",
"release": "np --no-release-draft",
"release:preview": "np prerelease --any-branch --no-release-draft --tag=preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prezly/code-style.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/prezly/code-style/issues"
},
"homepage": "https://github.com/prezly/code-style#readme",
"dependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-sort-export-all": "^1.4.1",
"globals": "^15.11.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript-eslint": "^8.11.0"
},
"peerDependencies": {
"eslint": "^9",
"eslint-config-next": "^13 || ^14 || ^15 || rc",
"eslint-plugin-react": "^7.36.0",
"eslint-plugin-react-hooks": "^4.5.0 || ^5",
"prettier": "^2 || ^3",
"stylelint": "^16.2.0"
},
"peerDependenciesMeta": {
"eslint-config-next": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-jsx-a11y": "^6.9.0",
"@types/node": "^22.9.0",
"eslint": "^9.15.0",
"eslint-config-next": "^15.0.3",
"np": "^10.0.7",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"typescript": "^5.6.3"
}
}