-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.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
{
"name": "@aabeborn/tirion",
"type": "module",
"publishConfig": {
"@aabeborn:registry": "https://npm.pkg.github.com"
},
"files": [
"package.json",
"README.md",
"eslint.cjs",
"prettier.js"
],
"exports": {
"./eslint": "./eslint.cjs",
"./prettier": "./prettier.js"
},
"scripts": {
"commit": "cz",
"format": "prettier --write .",
"lint": "eslint --ext \"**/*.{js,json,cjs}\" --ignore-path .gitignore .",
"lint:commit": "commitlint --edit \"$1\"",
"lint:fix": "eslint --ext \"**/*.{js,json,cjs}\" --ignore-path .gitignore --fix .",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"semantic-release": "^23.0.0"
},
"peerDependencies": {
"eslint": "^8.56.0",
"prettier": "^3.2.4"
},
"dependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.12.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^3.14.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vitest": "^0.3.21"
}
}