-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"name": "graphite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint",
"test": "vitest",
"typecheck": "tsc --noEmit",
"coverage": "vitest --coverage",
"code-mirror-gen": "lezer-generator ./src/core/graphene/tools/graphene.grammar --names -o ./src/core/graphene/tools/gen/gdl.ts && prettier ./src/core/graphene/tools/gen/**/* --write"
},
"dependencies": {
"@codemirror/autocomplete": "^6.9.1",
"@codemirror/commands": "^6.2.3",
"@codemirror/language": "^6.6.0",
"@codemirror/lint": "^6.2.1",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.10.0",
"@heroicons/react": "^2.0.18",
"@lezer/highlight": "^1.1.4",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-toolbar": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@tanstack/react-table": "^8.9.3",
"clsx": "^2.0.0",
"install": "^0.13.0",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.2",
"tailwind-merge": "^1.14.0",
"zustand": "^4.3.7"
},
"devDependencies": {
"@lezer/generator": "^1.2.2",
"@lezer/lr": "^1.3.4",
"@tailwindcss/typography": "^0.5.10",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/ui": "^0.30.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"i": "^0.3.7",
"lint-staged": "^13.2.1",
"npm": "^9.8.1",
"postcss": "^8.4.23",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vitest": "^0.30.1"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}