-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.81 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
{
"name": "skillforge",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "SkillForge - Immutable Learning Milestone Tracker on Hedera",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext js,jsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,css,md}\"",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"prepare": "husky install"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@google-cloud/local-auth": "^3.0.1",
"@hashgraph/hedera-wallet-connect": "^1.3.2",
"@hashgraph/sdk": "^2.49.0",
"@heroicons/react": "^2.2.0",
"@supabase/supabase-js": "^2.53.0",
"@tanstack/react-query": "^5.17.0",
"@tanstack/react-query-devtools": "^5.17.0",
"clsx": "^2.0.0",
"date-fns": "^3.0.6",
"dotenv": "^17.2.1",
"framer-motion": "^10.18.0",
"google-auth-library": "^10.2.1",
"googleapis": "^155.0.0",
"groq-sdk": "^0.29.0",
"lucide-react": "^0.303.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.5.0",
"react-router-dom": "^6.20.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^8.0.3",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.6",
"vite": "^7.0.4",
"vitest": "^3.2.4"
}
}