forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 5.24 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
{
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/**"
],
"scripts": {
"build": "lerna exec -- yarn build",
"build:main": "lerna exec --since main -- yarn build",
"build:w": "lerna exec --parallel -- yarn build:w",
"clean": "rimraf dist",
"commit-version": "git add . && git commit -m \"chore(release): publish `node -p 'require(\"./lerna.json\").version'`\"",
"cti": "lerna run cti",
"cti:clean": "lerna exec -- cti clean ./src",
"docs": "cd docs && yarn start",
"link-all": "yarn unlink-all && lerna exec --parallel yarn link",
"lint": "eslint \"packages/**/src/**/*.{js,jsx,ts,tsx}\"",
"postversionup": "yarn commit-version && git push",
"prebuild": "yarn clean",
"prerelease": "yarn build && yarn test && yarn lint",
"release:publish:latext": "lerna publish --force-publish",
"release:publish:next": "lerna publish --dist-tag next --force-publish",
"release:publish:experimental": "lerna publish --dist-tag experimental",
"release:latest": "yarn prerelease && lerna publish --force-publish",
"release:next": "yarn prerelease && lerna publish --dist-tag next --force-publish",
"release:experimental": "yarn prerelease && lerna publish --dist-tag experimental",
"internal:release:next": "yarn prerelease && yarn changeset publish --tag next",
"test": "jest",
"test:cov": "yarn test --coverage",
"test:covw": "yarn test:cov --watch",
"test:covwa": "yarn test:cov --watchAll",
"test:w": "yarn test --watch",
"test:wa": "yarn test --watchAll",
"typedoc": "npx typedoc",
"unlink-all": "lerna exec --parallel --bail=false yarn unlink",
"versionup": "lerna version --no-git-tag-version",
"versionup:pre": "lerna version prerelease",
"versionup:graduate": "lerna version --conventional-graduate --force-publish"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.0",
"@babel/plugin-transform-react-jsx": "^7.14.3",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@react-hook/merged-ref": "^1.3.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^12.7.3",
"@types/faker": "^5.1.7",
"@types/is-hotkey": "^0.1.2",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/marked": "^1.2.2",
"@types/node": "^14.14.31",
"@types/prismjs": "^1.16.3",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@styled-icons/boxicons-regular": "^10.23.0",
"@styled-icons/foundation": "^10.28.0",
"@styled-icons/material": "^10.28.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-prismjs": "2.0.1",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-twin": "^1.0.2",
"barrelsby": "^2.2.0",
"concurrently": "^6.0.0",
"eslint": "7.20.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-chai-friendly": "0.6.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-mdx": "^1.9.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"faker": "^5.5.3",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dnd-test-backend": "^12.0.0",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.39.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"slate": "0.60.11",
"slate-history": "0.60.11",
"slate-hyperscript": "0.60.11",
"slate-react": "0.60.11",
"tailwindcss": "^2.1.2",
"ts-jest": "^26.5.2",
"typedoc": "^0.19.2",
"typescript": "^4.2.2",
"twin.macro": "^2.4.2"
},
"resolutions": {
"eslint-plugin-prettier": "3.3.1",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"terser": "4.8.0"
},
"babelMacros": {
"twin": {
"config": "./docs/tailwind.config.js",
"preset": "styled-components"
}
}
}