-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
{
"name": "diamond",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"seed:femmes": "ts-node scripts/seed_femmes.ts",
"seed:hommes": "ts-node scripts/seed_hommes.ts",
"seed:enfants": "ts-node scripts/seed_enfants.ts",
"seed:autres": "ts-node scripts/seed_autres.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fortawesome/free-brands-svg-icons": "^6.7.0",
"@fortawesome/free-solid-svg-icons": "^6.7.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/material": "^6.2.1",
"@mui/styles": "^6.2.1",
"@mui/system": "^6.1.8",
"@neondatabase/serverless": "^0.10.4",
"@prisma/client": "^6.2.1",
"@types/next-auth": "^3.15.0",
"alasql": "^4.5.2",
"aos": "^2.3.4",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"bun": "^1.1.38",
"cors": "^2.8.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"neon": "^2.0.0",
"next": "^15.1.2",
"next-auth": "^4.24.10",
"pnpm": "^9.15.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-router-dom": "^7.0.1",
"react-toastify": "^10.0.6",
"sqlite3": "^5.1.7",
"tsc": "^2.0.4"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.17.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8.4.49",
"prisma": "^6.3.1",
"tailwindcss": "^3.4.15",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}