-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
33 lines (33 loc) · 985 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": "react-16-example",
"version": "0.0.1",
"private": true,
"description": "An example using React 16.8",
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-select": "^5.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/manager-api": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-webpack5": "^8.0.0",
"@storybook/theming": "^8.0.0",
"babel-loader": "^9.1.3",
"http-server": "^14.1.1",
"storybook": "^8.0.0",
"storybook-addon-performance": "workspace:*",
"typescript": "^5.6.3",
"webpack": "^5.90.0"
},
"scripts": {
"dev": "pnpm storybook dev --port 9003",
"build": "pnpm storybook build",
"start-server": "pnpm http-server storybook-static --port 9003 --silent"
}
}