This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.05 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
74
75
76
77
78
79
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-centered": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/theming": "^5.3.18",
"@types/lodash.get": "^4.4.6",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.30",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^5.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.4",
"babel-loader": "^8.1.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-styled-components": "^1.10.7",
"concurrently": "^5.1.0",
"csstype": "^2.6.10",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-mdx": "1.6.8",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^3.0.0",
"faker": "^4.1.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"jest-haste-map": "^25.2.3",
"jest-resolve": "^25.2.3",
"jest-styled-components": "^7.0.0",
"jsdoc-to-markdown": "^5.0.3",
"lerna": "^3.20.2",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-live": "^2.2.2",
"styled-components": "^5.0.1",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"scripts": {
"start": "start-storybook -p 5555",
"build": "rm -rf ./packages/**/dist && concurrently --names 'commonjs,esm' 'yarn build:commonjs' 'yarn build:esm'",
"build:commonjs": "lerna exec --parallel -- BABEL_ENV=commonjs babel --root-mode upward src --out-dir dist/commonjs --copy-files --no-copy-ignored --ignore tests,docs --source-maps inline",
"build:esm": "lerna exec --parallel -- BABEL_ENV=esm babel --root-mode upward src --out-dir dist/esm --copy-files --no-copy-ignored --ignore tests,docs --source-maps inline",
"docs": "build-storybook --quiet --docs -c .storybook -o ./docs && git add ./docs && git commit -m '📝 chore: docs'",
"lerna:bootstrap": "lerna bootstrap",
"lerna:bootstrap:ci": "lerna bootstrap --ci",
"lerna:publish": "lerna publish --conventional-commits -m '🔖 chore(release): publish'",
"lerna:publish:ci": "lerna publish --conventional-commits -m '🔖 chore(release): publish' --yes --force-publish=*",
"test": "jest",
"test:ci": "jest --ci --silent",
"coverage": "yarn build && jest --coverage",
"lint": "yarn lint:eslint && yarn lint:types",
"lint:eslint": "lerna exec --parallel -- eslint . -c ./.eslintrc --ext .js,mdx",
"lint:types": "lerna exec --parallel -- tsc -p ./tsconfig.json",
"prepublishOnly": "yarn build && yarn docs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"sideEffects": false
}