-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
103 lines (103 loc) · 2.87 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
94
95
96
97
98
99
100
101
102
103
{
"name": "eslint-plugin-storybook",
"version": "0.11.0",
"description": "Best practice rules for Storybook",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"storybook"
],
"homepage": "https://github.com/storybookjs/eslint-plugin-storybook#readme",
"bugs": {
"url": "https://github.com/storybookjs/eslint-plugin-storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/eslint-plugin-storybook"
},
"license": "MIT",
"author": "[email protected]",
"contributors": [
{
"name": "Rafael Rozon",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"generate-rule": "ts-node ./tools/generate-rule",
"lint": "eslint --fix .",
"migrate": "ts-migrate-full",
"prepare": "husky",
"prettier": "prettier --write .",
"release": "git status && pnpm run build && git status && auto shipit --name storybookbot --email [email protected]",
"start": "tsc --watch",
"test": "pnpm run test:unit && pnpm run test:integration",
"test:unit": "jest",
"test:integration": "jest --config jest.integration.config.js --testTimeout 60000",
"test:ci": "tsc --noEmit && pnpm run test:unit --ci && pnpm run test:integration --ci",
"update-all": "pnpm run update-configs && pnpm run update-docs",
"update-configs": "ts-node ./tools/update-configs",
"update-docs": "ts-node ./tools/update-rules-list"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@storybook/csf": "^0.1.11",
"@typescript-eslint/utils": "^8.8.1",
"ts-dedent": "^2.2.0"
},
"devDependencies": {
"@auto-it/released": "^11.2.1",
"@types/eslint": "^8.56.2",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.17",
"@types/requireindex": "^1.2.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@typescript-eslint/rule-tester": "^8.8.1",
"auto": "^11.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"semver": "^7.6.0",
"ts-jest": "^29.1.2",
"ts-migrate": "^0.1.35",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"eslint": ">=6"
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public"
},
"auto": {
"plugins": [
"npm",
"released"
]
},
"packageManager": "[email protected]"
}