-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.76 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
{
"name": "business-visa-form",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc",
"lint": "pnpm run check-types && next lint",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@solana/web3.js": "^1.87.6",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-query": "^5.8.7",
"axios": "^1.6.2",
"bigint-buffer": "^1.1.5",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"next": "14.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-loader-spinner": "^5.4.5",
"sharp": "^0.32.6",
"tailwind-merge": "^2.0.0",
"usehooks-ts": "^2.9.1",
"zod": "^3.22.4",
"zustand": "^4.4.6"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/big.js": "^6.2.2",
"@types/node": "20.10.0",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-config-next": "14.0.3",
"eslint-config-sznm": "^2.0.2",
"husky": ">=8.0.3",
"lint-staged": ">=15.1.0",
"postcss": "^8.4.31",
"prettier": "3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3.3.5",
"typescript": "5.3.2"
},
"lint-staged": {
"*.{ts,tsx,js,css,md}": [
"prettier --write"
]
}
}