-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "storybook-common",
"version": "0.0.0",
"description": "Common configuration for our projects’ Storybooks",
"private": true,
"license": "CC0-1.0",
"main": "build/storybook-common.js",
"types": "build/storybook-common.d.ts",
"scripts": {
"watch": "tsc-watch --preserveWatchOutput",
"prebuild": "rimraf build",
"build": "tsc",
"prepare": "yarn run build",
"storybook": "start-storybook -p 9001 -s static"
},
"dependencies": {
"@babel/core": "^7.21.4",
"babel-loader": "^9.1.2",
"core-js": "^3.19.3",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.10",
"@storybook/react": "^5.0.10",
"@types/jest": "24.x.x",
"@types/node": "^8.0.0",
"@types/react": "^16.8.5",
"@types/storybook__react": "^4.0.1",
"config-babel": "Cityofboston/config-babel#main",
"config-typescript": "Cityofboston/config-typescript#main",
"emotion-theming": "^10.0.10",
"jest": "^24.8.0",
"react": "^18.2.0",
"rimraf": "^2.6.2",
"tsc-watch": "^1.0.26",
"typescript": "^4.4.2"
}
}