-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
168 lines (168 loc) · 4.91 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "react-component-catalog-monorepo",
"author": "Stefan Natter <https://natterstefan.me>",
"license": "Apache-2.0",
"version": "2.1.1",
"private": true,
"scripts": {
"build": "FORCE_COLOR=1 lerna run build --stream",
"coveralls": "FORCE_COLOR=1 lerna run coveralls --scope react-component-catalog",
"lint": "yarn lint-js && yarn lint-ts",
"lint-js": "eslint --cache --quiet 'packages/**/*.{ts,tsx}'",
"lint-ts": "tsc --project tsconfig.test.json",
"prerelease": "yarn build && yarn size && yarn test",
"release:prepare": "HUSKY_SKIP_HOOKS=1 yarn lerna version --no-push --no-git-tag-version",
"release": "HUSKY_SKIP_HOOKS=1 standard-version",
"postrelease": "cp LICENCE README.md CHANGELOG.md packages/react-component-catalog",
"postinstall": "lerna bootstrap",
"size": "size-limit",
"start": "FORCE_COLOR=1 lerna run start --scope react-component-catalog-example --stream",
"test": "FORCE_COLOR=1 lerna run test --stream",
"watch": "FORCE_COLOR=1 lerna run watch --scope react-component-catalog-example --stream"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"@babel/preset-typescript": "7.12.1",
"@babel/runtime-corejs3": "7.12.1",
"@size-limit/preset-small-lib": "4.6.2",
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.15",
"@types/react": "16.9.43",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-dev-expression": "0.2.2",
"commitizen": "4.2.2",
"core-js": "3.6.5",
"coveralls": "3.1.0",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint": "7.12.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-ns-ts": "1.4.1",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.0",
"jest": "26.6.1",
"lerna": "3.22.1",
"lint-staged": "10.5.0",
"nodemon": "2.0.6",
"prettier": "2.1.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"rimraf": "3.0.2",
"size-limit": "4.6.2",
"standard-version": "9.0.0",
"terser-webpack-plugin": "4.2.3",
"ts-jest": "26.4.3",
"ts-loader": "8.0.7",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "4.0.5",
"webpack": "4.44.2",
"webpack-cli": "3.3.12"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook"
}
},
"lint-staged": {
"*.{js,jsx}": [
"yarn run lint-js",
"prettier --write",
"git update-index --again",
"jest --findRelatedTests"
],
"*.{ts,tsx}": [
"yarn run lint-ts",
"prettier --write",
"git update-index --again",
"jest --findRelatedTests"
]
},
"size-limit": [
{
"limit": "14 KB",
"path": "packages/react-component-catalog/dist/index.js",
"config": "packages/react-component-catalog/webpack.config.js",
"ignore": [
"react",
"react-dom"
]
},
{
"limit": "6 KB",
"path": "packages/react-component-catalog/lib/**/*.js"
},
{
"limit": "6 KB",
"path": "packages/react-component-catalog/es/**/*.js"
},
{
"limit": "6 KB",
"path": "packages/react-component-catalog/esm/**/*.js"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"changelogHeader": "# React-Component-Catalog Changelog\n\nAll notable changes to this project will be documented here. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).\n\n",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
}
}