-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"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.28.1",
"@eslint/compat": "1.2.7",
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.21.0",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.1",
"eslint-config-turbo": "2.4.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "16.0.0",
"prettier": "3.5.2",
"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.2",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1"
},
"overrides": {
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"react": "$react",
"react-dom": "$react-dom"
},
"packageManager": "[email protected]"
}