-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathpackage.json
33 lines (33 loc) · 919 Bytes
/
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
{
"name": "@nighttrax/storybook-example",
"private": true,
"version": "1.0.0",
"dependencies": {
"@nighttrax/components": "workspace:*",
"react": "~18.3.0",
"react-dom": "~18.3.0"
},
"devDependencies": {
"@babel/core": "~7.26.0",
"@babel/preset-env": "~7.26.0",
"@babel/preset-react": "~7.26.0",
"@babel/preset-typescript": "~7.26.0",
"@storybook/core-common": "~7.6.0",
"@storybook/react": "~7.6.0",
"@storybook/react-webpack5": "~7.6.0",
"@types/react": "~18.3.0",
"@types/react-dom": "~18.3.0",
"babel-loader": "~9.2.0",
"require-from-string": "~2.0.2",
"rimraf": "~6.0.0",
"storybook": "~7.6.0",
"tsconfig-paths-webpack-plugin": "~4.2.0",
"typescript": "~4.9.0",
"webpack": "~5.97.0"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build": "storybook build -o dist --quiet",
"clean": "rimraf dist"
}
}