forked from qlaffont/name-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.45 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.45 KB
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
{
"name": "name-checker",
"version": "1.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"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"dependencies": {
"@headlessui/react": "1.7.15",
"@hookform/resolvers": "3.1.1",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@tailwindcss/forms": "0.5.3",
"@tanstack/react-query": "4.29.15",
"@tanstack/react-query-devtools": "4.29.15",
"clsx": "1.2.1",
"env-vars-validator": "1.2.48",
"graphql": "16.6.0",
"next": "13.4.6",
"next-seo": "6.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.45.0",
"react-hot-toast": "2.4.1",
"react-select": "5.7.3",
"rosetty-react": "1.4.150",
"socket.io-client": "4.6.2",
"tailwindcss": "3.3.2",
"usehooks-ts": "2.9.1",
"username-checker": "^0.1.0",
"whoiser": "^1.17.1",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.1"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-react-query": "4.1.0",
"@hookform/devtools": "4.3.1",
"@tailwindcss/line-clamp": "0.4.4",
"@types/node": "18.16.18",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"autoprefixer": "10.4.14",
"csstype": "3.1.2",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"postcss": "8.4.24",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.3.0",
"sass": "1.63.5",
"ts-node": "10.9.1",
"typescript": "5.1.3",
"update-template": "1.3.1"
}
}