forked from hygraph/rich-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "root",
"private": true,
"devDependencies": {
"@changesets/changelog-github": "^0.2.7",
"@changesets/cli": "^2.10.3",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@size-limit/preset-small-lib": "^4.10.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/node": "^15.12.4",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-testing-library": "^4.2.1",
"husky": "^6.0.0",
"lerna": "^3.15.0",
"lint-staged": "^11.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^4.10.2",
"tsdx": "^0.14.1",
"typescript": "^4.2.4"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"start": "lerna run start --stream --parallel",
"test": "yarn prepublish && lerna run test --",
"lint": "lerna run lint -- --fix",
"format": "prettier --ignore-path .gitignore \"**/*.+(ts|tsx)\" --write",
"build": "lerna run build",
"prepublish": "lerna run prepublish",
"start:react:app": "yarn build && yarn --cwd examples/react && yarn --cwd examples/react start",
"changeset": "changeset",
"release": "changeset publish",
"size": "size-limit",
"analyze": "size-limit --why",
"prepare": "husky install"
},
"size-limit": [
{
"path": "packages/react-renderer/dist/rich-text-react-renderer.cjs.production.min.js",
"limit": "6 KB"
},
{
"path": "packages/react-renderer/dist/rich-text-react-renderer.esm.js",
"limit": "6 KB"
},
{
"path": "packages/types/dist/rich-text-types.cjs.production.min.js",
"limit": "75 B"
},
{
"path": "packages/types/dist/rich-text-types.esm.js",
"limit": "100 B"
}
]
}