-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "student-growth-tracker",
"version": "1.0.0",
"description": "Student Growth & Impact Tracker for High School Counselors",
"private": true,
"dependencies": {
"@clerk/clerk-react": "^5.59.6",
"@clerk/clerk-sdk-node": "^4.13.23",
"@google/generative-ai": "^0.24.1",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"axios": "^1.13.2",
"cors": "^2.8.6",
"date-fns": "^2.30.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"lucide-react": "^0.263.1",
"mongoose": "^9.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"snowflake-sdk": "^2.3.3"
},
"devDependencies": {
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.16",
"concurrently": "^9.2.1",
"nodemon": "^3.1.11",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.0",
"vite": "^6.4.1"
},
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "vite",
"build": "vite build",
"preview": "vite preview",
"server": "nodemon server/server.js",
"seed": "node server/seedData.js"
}
}