forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
194 lines (194 loc) · 7.9 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"packageManager": "yarn@4.0.0-rc.43",
"private": true,
"license": "MIT",
"scripts": {
"build": "yarn g:build",
"build:watch": "ROARR_LOG=true turbowatch ./config/turbowatch.config.ts | roarr",
"build:apps": "turbo --filter \"./apps/www\" build",
"build:registry": "yarn workspace www build:registry",
"build:templates": "turbo --filter \"./templates/**\" build",
"brl": "yarn g:brl",
"check:install": "yarn dlx @yarnpkg/doctor@4.0.0-rc.10 --configFileName config/.ncurc.yml packages",
"deps:check": "yarn dlx npm-check-updates@latest --configFileName config/.ncurc.yml --deep --mergeConfig",
"deps:update": "deps:check -u",
"dev": "turbo --filter=www dev",
"dev:cli": "yarn workspace better-plate-ui dev",
"docs:build": "cd docs && yarn && yarn build",
"docs:start": "cd docs && yarn && yarn start",
"lint": "yarn g:lint",
"lint:apps": "turbo --filter \"./apps/www\" lint",
"lint:templates": "turbo --filter \"./templates/plate-playground-template/**\" lint",
"lint:fix": "yarn g:lint:fix",
"playwright": "yarn g:playwright",
"prerelease": "yarn g:prerelease",
"test": "yarn g:test",
"typecheck": "yarn g:typecheck",
"g:brl": "turbo --filter \"./packages/**\" brl",
"g:build": "turbo --filter \"./packages/**\" build",
"g:build:watch": "yarn build:watch",
"g:build:registry": "yarn workspace www build:registry",
"g:changeset": "changeset",
"g:clean": "turbo --filter \"./packages/**\" clean",
"gen:package": "yarn plop --plopfile scripts/plop/plopfile.cjs package",
"g:dev": "turbo --filter=www dev",
"g:dev:cli": "yarn workspace better-plate-ui dev",
"g:lint": "turbo --filter \"./packages/**\" lint",
"g:lint:fix": "turbo lint:fix",
"g:lint:apps": "turbo --filter=www lint && cd templates/plate-playground-template && pnpm lint",
"g:lint:apps:fix": "turbo --filter=www lint --fix && cd templates/plate-playground-template && pnpm lint:fix",
"g:plate-ui": "cd $INIT_CWD && COMPONENTS_REGISTRY_URL=http://localhost:3000 yarn run -T plate-ui",
"g:playwright": "yarn playwright test",
"g:prerelease": "yarn build",
"g:release:next": "yarn g:prerelease && yarn changeset publish --tag next",
"g:test": "turbo --filter \"./packages/**\" test",
"g:test:watch": "turbo --filter \"./packages/**\" test:watch",
"g:test:cov": "yarn g:test --coverage",
"g:test:covw": "yarn g:test:cov --watch",
"g:test:covwa": "yarn g:test:cov --watchAll",
"g:test:wa": "yarn g:test --watchAll",
"g:typecheck": "turbo typecheck",
"g:typecheck:apps": "turbo --filter=www typecheck",
"install:playwright": "yarn playwright install --with-deps",
"nuke:node_modules": "rimraf '**/node_modules'",
"p:brl": "cd $INIT_CWD && barrelsby -d $INIT_CWD/src -D -l all -q -e '.*(fixture|template|spec|__tests__).*'",
"p:brl:below": "cd $INIT_CWD && barrelsby -d $INIT_CWD/src -D -l below -q -e '.*(fixture|template|spec|__tests__).*'",
"p:build": "cd $INIT_CWD && yarn p:tsup",
"p:build:watch": "cd $INIT_CWD && yarn p:tsup --watch",
"p:clean": "cd $INIT_CWD && rimraf dist && jest --clear-cache",
"p:lint": "eslint $INIT_CWD/src --color",
"p:lint:fix": "eslint $INIT_CWD/src --color --fix",
"p:tsup": "cd $INIT_CWD && tsup --config=${PROJECT_CWD}/config/tsup.config.ts",
"p:test": "cd $INIT_CWD && jest --config=${PROJECT_CWD}/jest.config.cjs --maxWorkers=1 --passWithNoTests $INIT_CWD ",
"p:typecheck": "cd $INIT_CWD && tsc --noEmit --emitDeclarationOnly false",
"postinstall": "patch-package",
"sync:templates": "./scripts/sync-templates.sh \"templates/*\""
},
"workspaces": [
"apps/*",
"packages/*"
],
"resolutions": {
"terser": "4.8.0",
"eslint-plugin-import": "2.27.5"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"@changesets/parse": "^0.3.16",
"@changesets/types": "^5.2.1",
"@dword-design/eslint-plugin-import-alias": "^4.0.8",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@playwright/test": "1.36.0",
"@roarr/cli": "^5.12.3",
"@swc/core": "1.3.90",
"@swc/jest": "0.2.29",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/is-hotkey": "^0.1.7",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/lodash-es": "^4.17.9",
"@types/marked": "^4.3.1",
"@types/node": "^20.4.2",
"@types/prismjs": "^1.26.0",
"@types/raf": "^3.4.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.7",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"app-root-path": "^3.1.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.6.1",
"babel-loader": "^9.1.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-import": "^1.13.6",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-prismjs": "^2.1.0",
"barrelsby": "^2.8.0",
"better-plate-ui": "workspace:^",
"change-case": "^4.1.2",
"chokidar": "3.5.3",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"esbuild-plugin-babel": "0.2.3",
"eslint": "8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.10.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.6.1",
"patch-package": "^7.0.2",
"plop": "3.1.2",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.0",
"react": "^18.2.0",
"react-dnd-test-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-is": "18.2.0",
"react-test-renderer": "18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-import-css": "^3.3.1",
"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-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"slate": "0.94.1",
"slate-history": "0.93.0",
"slate-hyperscript": "0.77.0",
"slate-react": "0.99.0",
"slate-test-utils": "1.3.2",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.1",
"tsup": "7.2.0",
"turbo": "^1.10.7",
"turbowatch": "2.29.4",
"typescript": "5.1.6"
},
"engines": {
"node": "^14.13.1 || >=16.0.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
}
}