-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "oglasi-apk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:migrate": "npx drizzle-kit generate && npx drizzle-kit push",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@remixicon/react": "^4.9.0",
"axios": "^1.13.6",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.3",
"chart.js": "^4.5.1",
"cors": "^2.8.6",
"drizzle-orm": "^0.45.1",
"jsonwebtoken": "^9.0.3",
"next": "16.1.6",
"next-swagger-doc": "^0.4.1",
"nodemailer": "^8.0.2",
"pg": "^8.18.0",
"react": "19.2.3",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-react": "^5.32.0",
"tsx": "^4.21.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.32",
"@types/nodemailer": "^7.0.11",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/swagger-ui-react": "^5.18.0",
"dotenv": "^17.2.4",
"drizzle-kit": "^0.31.8",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}