-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "@storybook/auto-config",
"version": "0.0.3",
"description": "A collection of codemods to configure Storybook addons automatically",
"private": false,
"main": "index.js",
"bin": "./index.js",
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"release": "pnpm build && auto shipit",
"test": "vitest"
},
"keywords": [
"storybook",
"codemod",
"configuration"
],
"author": {
"name": "Shaun Evening",
"email": "shaun@chromatic.com"
},
"license": "MIT",
"files": [
"bin/**/*",
"README.md",
"index.js"
],
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/traverse": "^7.22.8",
"@babel/types": "^7.22.5",
"@storybook/types": "^7.3.0",
"@types/node": "^20.4.5",
"@types/prompts": "^2.4.4",
"auto": "^11.1.1",
"boxen": "^7.1.1",
"commander": "^11.0.0",
"dedent": "^1.5.1",
"leven": "^4.0.0",
"prettier": "^3.0.0",
"prompts": "^2.4.2",
"read-pkg-up": "^10.0.0",
"recast": "^0.23.3",
"rimraf": "^5.0.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vitest": "^0.33.0",
"webpack": "^5.88.2"
},
"dependencies": {
"@storybook/cli": "^7.3.0",
"@storybook/csf-tools": "^7.3.0",
"@storybook/node-logger": "^7.3.0"
}
}