-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.77 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"workspaces": [
"packages/*"
],
"private": true,
"name": "lerna-repo",
"scripts": {
"storybook": "start-storybook -p 6006 -c .storybook",
"build": "lerna exec --ignore '_build' -- npm run build",
"type-check": "lerna exec --ignore '_build' -- npm run type-check",
"bootstrap": "lerna bootstrap",
"publish": "npm run build && lerna publish --registry http://localhost:4873 -- dist",
"commitmsg": "commitlint -e $GIT_PARAMS",
"styleguidist": "styleguidist server",
"generate-jsx": "ft jsx-component ./packages",
"generate-tsx": "ft tsx-component ./packages",
"postinstall": "yarn build"
},
"dependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-do-expressions": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/plugin-proposal-pipeline-operator": "7.0.0",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/plugin-transform-react-jsx-source": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-1": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@babel/runtime": "7.1.2",
"@rebass/components": "^4.0.0-1",
"babel-core": "npm:@babel/core",
"babel-loader": "8.0.2",
"babel-plugin-react-docgen": "2.0.0",
"babel-plugin-react-docgen-typescript": "1.0.1",
"babel-plugin-styled-components": "1.7.1",
"babel-plugin-transform-es2015-modules-simple-commonjs": "0.3.0",
"lerna": "3.4.3",
"prop-types": "^15.6.2",
"react-docgen-typescript": "1.10.0",
"react-docgen-typescript-loader": "3.0.0",
"react-docgen-typescript-webpack-plugin": "1.1.0",
"styled-system": "^3.1.11",
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@material-ui/core": "3.0.3",
"@material-ui/icons": "3.0.1",
"@storybook/addon-actions": "4.0.0-alpha.21",
"@storybook/addon-console": "1.0.4",
"@storybook/addon-info": "4.0.0-alpha.21",
"@storybook/addon-knobs": "4.0.0-alpha.21",
"@storybook/addons": "4.0.0-alpha.21",
"@storybook/cli": "4.0.0-alpha.21",
"@storybook/react": "4.0.0-alpha.21",
"@types/react": "16.4.14",
"folder-template": "0.1.4",
"husky": "1.3.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-styleguidist": "^8.0.6",
"styled-components": "^4.1.3",
"typescript": "3.1.3",
"webpack": "4.19.0"
}
}