forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 6.65 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
{
"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 --no-daemon",
"build:registry": "yarn workspace www build:registry",
"build:templates": "turbo --filter \"./templates/**\" build --no-daemon",
"brl": "yarn g:brl",
"check:install": "yarn dlx @yarnpkg/[email protected] --configFileName config/.ncurc.yml packages",
"deps:check": "npx npm-check-updates@latest --configFileName config/ncurc.yml --workspaces --root --mergeConfig",
"deps:update": "npx npm-check-updates@latest --configFileName config/ncurc.yml -u --workspaces --root --mergeConfig",
"dev": "turbo --filter=www dev --no-daemon",
"dev:cli": "yarn workspace @udecode/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 --no-daemon",
"lint:templates": "turbo --filter \"./templates/plate-playground-template/**\" lint --no-daemon",
"lint:fix": "yarn g:lint:fix",
"playwright": "yarn g:playwright",
"release": "yarn build && yarn changeset publish",
"test": "yarn g:test",
"typecheck": "yarn g:typecheck",
"g:brl": "turbo --filter \"./packages/**\" brl --no-daemon",
"g:build": "turbo --filter \"./packages/**\" build --no-daemon",
"g:build:watch": "yarn build:watch",
"g:build:registry": "yarn workspace www build:registry",
"g:changeset": "changeset",
"g:clean": "turbo --filter \"./packages/**\" clean --no-daemon",
"gen:package": "yarn plop --plopfile scripts/plop/plopfile.cjs package",
"g:dev": "turbo --filter=www dev --no-daemon",
"g:dev:cli": "yarn workspace @udecode/plate-ui dev",
"g:lint": "turbo --filter \"./packages/**\" lint --no-daemon",
"g:lint:fix": "turbo lint:fix --no-daemon",
"g:lint:apps": "turbo --filter=www lint && cd templates/plate-playground-template --no-daemon && pnpm lint",
"g:lint:apps:fix": "turbo --filter=www lint --fix && cd templates/plate-playground-template --no-daemon && 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:release:next": "yarn build && yarn changeset publish --tag next",
"g:test": "turbo --filter \"./packages/**\" test --no-daemon",
"g:test:watch": "turbo --filter \"./packages/**\" test:watch --no-daemon",
"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 --no-daemon",
"g:typecheck:apps": "turbo --filter=www typecheck --no-daemon",
"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": {
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"@dword-design/eslint-plugin-import-alias": "^4.0.9",
"@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.10",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@types/is-hotkey": "^0.1.7",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@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",
"@udecode/plate-ui": "workspace:^",
"app-root-path": "^3.1.0",
"autoprefixer": "^10.4.14",
"barrelsby": "^2.8.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"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-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.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"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",
"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.4.0",
"ts-jest": "^29.1.1",
"tsup": "7.2.0",
"turbo": "^1.10.7",
"turbowatch": "2.29.4",
"typescript": "5.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
}
}