-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.55 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
{
"name": "@datarockets/style-guide",
"version": "2.0.0-canary.2",
"description": "Datarockets' style guide",
"homepage": "https://github.com/datarockets/style-guide#readme",
"bugs": {
"url": "https://github.com/datarockets/style-guide/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datarockets/style-guide.git"
},
"license": "MIT",
"type": "module",
"exports": {
"./eslint/*": "./eslint/configs/*.js",
"./eslint/utils": "./eslint/utils.js",
"./prettier": "./prettier/index.js",
"./typescript": "./typescript/tsconfig.base.json"
},
"main": "index.js",
"files": [
"eslint",
"prettier",
"typescript"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"prepare": "husky"
},
"prettier": "./prettier/index.js",
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint-react/eslint-plugin": "^1.24.1",
"@eslint/compat": "^1.2.5",
"@stylistic/eslint-plugin": "^3.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-testing-library": "^7.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"minimatch": "^10.0.1",
"prettier-plugin-packagejson": "^2.5.8",
"typescript-eslint": "^8.21.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@semantic-release/git": "^10.0.1",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@next/eslint-plugin-next": ">=15.0.0 <16",
"eslint": ">=9.0.0 <10",
"prettier": ">=3.0.0 <4",
"typescript": ">=5.0.0 <6"
},
"peerDependenciesMeta": {
"@next/eslint-plugin-next": {
"optional": true
},
"eslint": {
"optional": true
},
"prettier": {
"optional": true
},
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}