This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
99 lines (99 loc) · 3.34 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "root",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"packages/*"
],
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"postinstall": "yarn lerna clean --yes && yarn lerna bootstrap",
"test": "jest --env=jsdom --coverage --coverageDirectory packages/docs/static/coverage",
"build:all": "yarn test && yarn build:modules && yarn build:docs",
"build:types": "yarn make-dir packages/docs/generated && react-docgen packages -x tsx -e index.tsx -i Theme -i docs -i dist -i __tests__ -o packages/docs/generated/component-prop-types.json --pretty --resolver findAllComponentDefinitions && yarn build:write-types",
"build:write-types": "node shared/build-tools/associate-types-in-packagejson.js",
"build:modules": "yarn lerna run build",
"build:css": "yarn node shared/build-tools/generate-css-from-components.js",
"build:docs": "yarn build:types && yarn lerna run docs:prod",
"docs:serve": "yarn lerna run docs:serve",
"lerna:version": "yarn lerna version --conventional-commits --loglevel=error --yes",
"lerna:publish": "yarn lerna publish from-package --yes",
"commit": "git-cz",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/compat-data": "^7.11.0",
"@babel/core": "^7.12.10",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/config-lerna-scopes": "^8.1.0",
"@reach/component-component": "^0.6.2",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.15",
"@testing-library/dom": "^6.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^9.1.4",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"autoprefixer": "^9.7.0",
"babel-loader": "^8.2.2",
"commitizen": "^4.0.3",
"concurrently": "^4.1.2",
"css-loader": "^5.0.1",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.3.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"lerna": "3.22.1",
"make-dir-cli": "^2.0.0",
"markdown-to-jsx": "^6.11.0",
"node-recursive-directory": "^1.2.0",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"prism-react-renderer": "^0.1.7",
"react": "^16.9.0",
"react-docgen": "5.4.0",
"react-dom": "^16.9.0",
"react-live": "^2.2.0",
"rollup": "^1.20.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.24.0",
"style-loader": "^2.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2",
"yargs": "^14.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"yalc": "^1.0.0-pre.35"
}
}