-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "bento",
"description": "A deliciously structured theme",
"private": true,
"scripts": {
"watch": "tsc --watch",
"example": "yarn --cwd example run start",
"start": "concurrently --kill-others -n example,bento -c cyan,magenta \"yarn example\" \"yarn --cwd bento run watch\"",
"build": "yarn --cwd bento run prepare",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.2",
"@storybook/react": "^7.5.2",
"@storybook/react-webpack5": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@types/jest": "^26.0.15",
"@types/lodash.get": "^4.4.6",
"babel-jest": "^26.6.3",
"concurrently": "^8.2.2",
"prop-types": "^15.8.1",
"storybook": "^7.5.2"
},
"dependencies": {
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^6.0.0",
"stylis": "^4.0.0"
},
"workspaces": [
"bento",
"example"
]
}