-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.73 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
{
"name": "@liga/website",
"version": "4.0.0",
"private": true,
"type": "module",
"homepage": "https://playliga.gg",
"repository": {
"type": "git",
"url": "https://github.com/playliga/website.git"
},
"scripts": {
"dev": "vite",
"dev:env": "shx cp -n .env.example .env.local",
"dev:codegen": "graphql-codegen",
"dev:preview": "vite preview",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prebuild": "npm run dev:codegen",
"postinstall": "npm run dev:codegen && npm run dev:env"
},
"codegen": {
"schema": "https://docs.github.com/public/fpt/schema.docs.graphql",
"ignoreNoDocuments": true,
"documents": [
"src/lib/api.ts"
],
"generates": {
"./src/generated/": {
"preset": "client"
}
}
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"dependencies": {
"@apollo/client": "3.11.8",
"@fontsource-variable/jetbrains-mono": "5.0.22",
"@fontsource-variable/montserrat": "5.0.20",
"classnames": "2.5.1",
"graphql": "16.9.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.3.0",
"react-markdown": "9.0.1",
"react-router-dom": "6.26.2",
"rehype-raw": "7.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@tailwindcss/typography": "0.5.14",
"@types/node": "22.5.0",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.20",
"daisyui": "4.12.10",
"globals": "15.9.0",
"postcss": "8.4.41",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.6",
"shx": "0.3.4",
"tailwindcss": "3.4.10",
"typescript": "^5.5.4",
"vite": "5.4.2"
}
}