-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 986 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 986 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
{
"name": "fintrack_api",
"version": "1.0.0",
"description": "finance dashboard system where different users interact with financial records based on their role.",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"test": "echo \"Error: no test specified\" && exit 1"
},
"prisma": {
"seed": "node ./src/prisma/seed.js"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@supabase/supabase-js": "^2.39.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.6",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"jsonwebtoken": "^9.0.2",
"swagger-ui-express": "^4.6.3",
"zod": "^4.3.6"
},
"devDependencies": {
"nodemon": "^3.0.1",
"prisma": "^5.22.0"
}
}