-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 925 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 925 Bytes
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
{
"name": "root",
"private": true,
"scripts": {
"clean-all": "lerna clean --yes && lerna run clean && shx rm -f yarn-error.log",
"build": "lerna run build",
"storybook": "lerna run storybook --stream",
"bs": "lerna bootstrap",
"refresh": "yarn clean-all && yarn build && yarn bs && yarn storybook"
},
"devDependencies": {
"lerna": "^3.13.4",
"@babel/core": "^7.0.0-0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0",
"@fortawesome/react-fontawesome": ">=0.1.4",
"@fortawesome/fontawesome-svg-core": "^1.2.0-7",
"@stardust-ui/react": ">=0.27.0"
},
"dependencies": {
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"workspaces": [
"packages/*",
"packages/shared-components/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}