-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.06 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
{
"name": "@we-are-singular/eslint-config",
"version": "1.4.0",
"description": "singular eslint stuff",
"main": "dist/main.cjs",
"module": "dist/main.mjs",
"types": "types.d.ts",
"files": [
"dist/**",
"types.d.ts",
"all.js"
],
"scripts": {
"build": "rollup -c",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/we-are-singular/eslint-config.git"
},
"author": "singular",
"license": "MIT",
"homepage": "https://github.com/we-are-singular/eslint-config#readme",
"bugs": {
"url": "https://github.com/we-are-singular/eslint-config/issues"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"deepmerge": "^4.3.1",
"eslint": "^8",
"eslint-config-next": "13.1.2",
"eslint-config-prettier": "^8.10.0",
"eslint-config-turbo": "latest",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-markdown": "^4.0.1",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-storybook": "^0.6.8",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-vitest": "^0.0.19",
"eslint-plugin-vitest-globals": "^1.2.0",
"eslint-plugin-yml": "^1.12.2",
"typescript": ">=4.5"
},
"devDependencies": {
"@rollup/plugin-virtual": "^3.0.2",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"release-it": "^17.1.1",
"rollup": "^4.12.1",
"rollup-plugin-prettier": "^4.1.1"
},
"peerDependencies": {
"eslint": ">=8",
"typescript": ">=4.5"
},
"release-it": {
"hooks": {
"before:init": [
"git pull -r",
"npm run build"
],
"after:bump": "npx auto-changelog -p"
},
"git": {
"requireBranch": "main",
"commitMessage": "Release: ${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}