-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "lexical-beautiful-mentions",
"version": "0.0.0",
"private": true,
"workspaces": [
"plugin",
"www"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"fmt": "prettier --check \"**/*.{ts,tsx}\"",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"hygiene": "turbo run typecheck lint fmt",
"test": "turbo run test",
"e2e": "turbo run e2e",
"release": "turbo run release && changeset tag"
},
"devDependencies": {
"@changesets/cli": "2.27.12",
"@eslint/compat": "1.2.6",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.20.0",
"@types/eslint__js": "8.42.3",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-config-turbo": "2.4.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "15.14.0",
"prettier": "3.5.0",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-tailwindcss": "0.6.11",
"react": "19.0.0",
"react-dom": "19.0.0",
"turbo": "2.4.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0"
},
"overrides": {
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"react": "$react",
"react-dom": "$react-dom"
},
"packageManager": "npm@11.1.0"
}