-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 994 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
34
35
36
37
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "6.2.8",
"@storybook/addon-links": "6.2.8",
"@storybook/react": "6.2.8",
"babel-loader": "^8.0.6",
"lerna": "4.0.0",
"webpack": "^4.42.1"
},
"scripts": {
"build": "lerna exec --parallel -- babel --root-mode upward src -d lib --ignore **/*.story.js --watch",
"bootstrap": "lerna bootstrap --use-workspaces",
"golive": "lerna publish",
"diff": "lerna diff",
"ls": "lerna ls",
"link": "lerna link",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs"
},
"version": "0.0.6",
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}