-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "flags-game",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"lint": "next lint",
"format": "prettier . --write",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"format",
"lint"
],
"dependencies": {
"@nextui-org/react": "^2.6.11",
"@prisma/client": "5.17.0",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.4",
"@tanstack/react-query": "^5.64.2",
"@upstash/ratelimit": "^0.4.4",
"@upstash/redis": "^1.34.3",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"framer-motion": "^10.18.0",
"jsonwebtoken": "^9.0.2",
"leo-profanity": "^1.7.0",
"lucide-react": "^0.350.0",
"mongodb": "^6.12.0",
"next": "latest",
"next-themes": "^0.3.0",
"react": "latest",
"react-dom": "latest",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@playwright/test": "^1.49.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/leo-profanity": "^1.5.4",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"autoprefixer": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"husky": "^8.0.3",
"postcss": "latest",
"pre-commit": "^1.2.2",
"prettier": "^3.4.2",
"prisma": "^5.22.0",
"tailwindcss": "latest",
"ts-jest": "^29.2.5",
"typescript": "latest",
"vitest": "^0.34.6"
}
}