-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1019 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1019 Bytes
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
{
"name": "code-challenge-platform",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev --host 0.0.0.0",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"db:seed": "tsx src/db/seed.ts",
"db:load": "tsx src/db/csv_to_sql.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^8.3.4",
"@prisma/client": "^6.19.0",
"@tailwindcss/vite": "^4.0.0",
"astro": "^4.16.14",
"bcryptjs": "^2.4.3",
"csv-parser": "^3.2.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.3",
"nanoid": "^5.0.9",
"nodemailer": "^7.0.11",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/nanoid": "^3.0.0",
"prisma": "^6.19.0",
"tsx": "^4.19.2"
}
}