-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 KB
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
{
"name": "heft-storybook-v6-react-tutorial-storykit",
"version": "0.0.0",
"private": true,
"description": "Storybook build dependencies for heft-storybook-v6-react-tutorial",
"main": "./lib-commonjs/index.js",
"module": "./lib-esm/index.js",
"types": "./lib-dts/index.d.ts",
"exports": {
".": {
"types": "./lib-dts/index.d.ts",
"import": "./lib-esm/index.js",
"require": "./lib-commonjs/index.js"
},
"./lib/*": {
"types": "./lib-dts/*",
"import": "./lib-esm/*",
"require": "./lib-commonjs/*"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
},
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean"
},
"dependencies": {
"@babel/core": "~7.20.0",
"@storybook/addon-actions": "~6.4.18",
"@storybook/addon-essentials": "~6.4.18",
"@storybook/addon-links": "~6.4.18",
"@storybook/cli": "~6.4.18",
"@storybook/components": "~6.4.18",
"@storybook/core-events": "~6.4.18",
"@storybook/react": "~6.4.18",
"@storybook/theming": "~6.4.18",
"@types/heft-jest": "1.0.1",
"@types/node": "20.17.19",
"@types/react-dom": "17.0.25",
"@types/react": "17.0.74",
"@types/webpack-env": "1.18.8",
"babel-loader": "~8.2.3",
"css-loader": "~5.2.7",
"jest": "~29.3.1",
"react-dom": "~17.0.2",
"react": "~17.0.2",
"style-loader": "~2.0.0",
"terser-webpack-plugin": "~3.0.8",
"typescript": "~5.8.2",
"webpack": "~4.47.0"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"eslint": "~9.37.0",
"local-web-rig": "workspace:*"
}
}