-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.21 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
{
"name": "nextjs-app-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"test": "jest --watchAll=false",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.7",
"@clerk/backend": "^1.24.3",
"@clerk/nextjs": "^6.20.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@jest/globals": "^29.7.0",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"lucide-react": "^0.475.0",
"mongoose": "^8.14.1",
"next": ">=14.2.25",
"next-themes": "^0.4.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.15.1",
"react-loading-skeleton": "^3.5.0",
"react-responsive-carousel": "^3.2.23",
"react-slick": "^0.30.3",
"resend": "^4.1.2",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18.3.18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"cmdk": "^1.0.4",
"eslint": "^8",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"husky": "^9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15",
"postcss": "^8.4.49",
"prettier": "^3",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.6",
"typescript": "^5.7.2"
}
}