-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"name": "starter-web",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3100",
"build": "next build",
"start": "next start",
"lint": "npx tsc --noEmit && next lint --fix",
"prepare": "husky install",
"generate": "eval $(egrep -v '^#' .env | xargs) graphql-codegen --config codegen.yml",
"dev:generate": "eval $(egrep -v '^#' .env | xargs) graphql-codegen --config codegen.yml --watch",
"generate-vercel": "graphql-codegen --config codegen.yml",
"update-template": "update-template https://github.com/qlaffont/starter-web"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"dependencies": {
"@headlessui/react": "1.7.19",
"@hookform/resolvers": "3.9.1",
"@t3-oss/env-nextjs": "^0.11.0",
"@tailwindcss/forms": "0.5.9",
"@tanstack/react-query": "5.62.10",
"@tanstack/react-query-devtools": "5.62.10",
"classix": "^2.1.36",
"dayjs": "^1.11.10",
"graphql": "16.10.0",
"next": "15.1.2",
"next-protected-auth": "2.0.402",
"next-seo": "6.6.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"react-hot-toast": "2.4.1",
"react-select": "5.9.0",
"rosetty-react": "3.0.241",
"socket.io-client": "4.8.1",
"tailwindcss": "3.4.17",
"usehooks-ts": "3.1.0",
"zod": "^3.22.4",
"zod-rosetty": "^1.0.103"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-codegen/typescript-operations": "4.4.0",
"@graphql-codegen/typescript-react-query": "6.1.0",
"@hookform/devtools": "4.3.3",
"@tailwindcss/line-clamp": "0.4.4",
"@types/node": "22.10.2",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"autoprefixer": "10.4.20",
"csstype": "3.1.3",
"eslint": "8.57.1",
"eslint-config-next": "15.1.2",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"sass": "1.83.0",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"update-template": "1.3.1"
}
}