-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.51 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
{
"name": "@datarockets/style-guide",
"version": "1.2.0",
"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",
"exports": {
"./eslint/*": "./eslint/configs/*.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",
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@rushstack/eslint-patch": "^1.7.2",
"@stylistic/eslint-plugin": "^1.6.2",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-jsx-expressions": "^1.3.2",
"eslint-plugin-playwright": "^1.3.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^51.0.1",
"prettier-plugin-packagejson": "^2.4.12"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^8.56.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@next/eslint-plugin-next": ">=13.0.0 <15",
"eslint": ">=8.56.0 <9",
"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"
}
}