-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
{
"name": "sos",
"version": "1.11.1",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"generate": "run-s generate:schema generate:client generate:format",
"generate:schema": "tsx ./scripts/generateSchema.ts",
"generate:client": "zeus schema.graphql src/utils",
"generate:format": "prettier -w src/utils/zeus ./schema.graphql",
"lint": "next lint",
"format:check": "prettier --check src",
"format:fix": "prettier --write src",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.8.2",
"@directus/sdk": "^19.0.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@tanstack/react-query": "^4.18.0",
"@trpc/client": "^10.45.0",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.0",
"@trpc/server": "^10.45.0",
"@vercel/og": "^0.6.5",
"framer-motion": "^12.4.1",
"fuse.js": "^7.0.0",
"jotai": "^2.11.3",
"next": "15.1.6",
"next-seo": "^6.6.0",
"nextjs-routes": "^2.2.5",
"nuqs": "^2.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.4.0",
"react-image-gallery": "^1.3.0",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"superjson": "2.2.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.13.1",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/react-image-gallery": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.18.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dotenv-cli": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.7",
"graphql-zeus": "^7.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.0",
"semantic-release": "^24.2.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"wait-on": "^8.0.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"*": "prettier --write --ignore-unknown"
},
"volta": {
"node": "20.10.0"
}
}