-
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.26 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.26 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": "csutilities",
"private": false,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"dev:admin": "cd ../CSUtilitiesAdmin && npm run dev",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:admin\"",
"build": "next build",
"build:admin": "cd ../CSUtilitiesAdmin && npm run build",
"build:all": "npm run build && npm run build:admin",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"db:migrate": "cd ../CSUtilitiesAdmin && npm run db:migrate",
"db:generate": "cd ../CSUtilitiesAdmin && npm run db:generate",
"db:seed": "cd ../CSUtilitiesAdmin && npm run db:seed",
"db:studio": "cd ../CSUtilitiesAdmin && npm run db:studio"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-query": "^5.56.2",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^8.2.2",
"lucide-react": "^0.462.0",
"next": "16.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"keywords": [
"computer-science",
"dsa",
"leetcode",
"university-rankings",
"company-rankings",
"tech-interviews",
"react",
"typescript",
"nextjs"
],
"author": "CSUtilities Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aprameyak/CSUtilities.git"
},
"homepage": "https://csutilities.com",
"bugs": {
"url": "https://github.com/aprameyak/CSUtilities/issues"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.5.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.0",
"eslint-config-next": "16.0.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"globals": "^15.9.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.11",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1"
}
}