-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.49 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "home_project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:w": "jest --watch",
"test:d": "jest",
"prepare": "husky",
"clasters-scale": "pm2 scale ./node_modules/next/dist/bin/next +3 -- -p 3000",
"clusters-stop": "pm2 stop ./node_modules/next/dist/bin/next -i 3",
"clusters-delete": "pm2 delete all",
"clusters-start": "pm2 start ./node_modules/next/dist/bin/next -i 3 -n home-project -p 3000 -- start"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --ext .ts,.tsx,.js,.jsx"
],
"*{js,jsx,ts,tsx,json,cjs,mjs,md}": [
"prettier --write"
]
},
"type-check": "tsc --project tsconfig.json --pretty --noEmit && echo ",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@formatjs/icu-messageformat-parser": "^2.9.3",
"@formatjs/intl-localematcher": "^0.5.7",
"@hookform/resolvers": "^3.9.1",
"@next/env": "15.1.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@react-three/drei": "^9.119.0",
"@react-three/fiber": "^9.0.0-rc.1",
"@tanstack/react-query": "^5.62.16",
"@trpc/react-query": "^11.0.0-rc.638",
"@types/three": "^0.170.0",
"@vercel/postgres": "^0.10.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.2",
"fast-text-encoding": "^1.0.6",
"framer-motion-3d": "^11.15.0",
"leva": "^0.9.35",
"lucide-react": "^0.456.0",
"motion": "^12.0.0-alpha.2",
"negotiator": "^1.0.0",
"next": "^15.1.6",
"next-auth": "^4.24.10",
"next-themes": "^0.4.4",
"node-cmd": "^5.0.0",
"pg": "^8.13.1",
"punycode": "^2.3.1",
"react": "^19.0.0-rc.1",
"react-dom": "^19.0.0-rc.1",
"react-hook-form": "^7.53.2",
"react-intl": "^6.8.7",
"react-toastify": "^10.0.6",
"swiper": "^11.1.15",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"three": "^0.171.0",
"three-stdlib": "^2.34.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.23.8"
},
"resolutions": {
"framer-motion": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"babel-jest": "^29.7.0",
"babel-plugin-react-compiler": "^19.0.0-beta-a7bf2bd-20241110",
"drizzle-kit": "^0.28.1",
"eslint": "^8",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
}
}