-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 2.03 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
{
"name": "backend-skyfly-team01",
"version": "1.0.0",
"description": "Backend Final Project team 01 - SkyFly",
"main": "index.js",
"type": "commonjs",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"db-push": "npx prisma db push",
"migrate": "npx prisma migrate dev",
"migrate-refresh": "npx prisma migrate reset",
"vercel-build": "npx prisma generate && npx prisma migrate deploy",
"db-seed": "node ./prisma/seeder/seeder",
"db-seedNotification": "node ./prisma/seeder/notificationSeeder",
"db-seedReturnFlight": "node ./prisma/seeder/returnFlightSeeder",
"db-seedFlight": "node ./prisma/seeder/flightSeeder",
"test": "jest --setupFiles dotenv/config --coverage --forceExit",
"lint": "eslint .",
"fixlint": "eslint . --fix"
},
"keywords": [],
"author": "Yoga Andhika Rafi Viery Faris Naufal Lowis Falah",
"license": "ISC",
"devDependencies": {
"eslint": "^9.4.0",
"globals": "^15.4.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.0"
},
"dependencies": {
"@joi/date": "^2.1.1",
"@prisma/client": "^5.13.0",
"@supabase/supabase-js": "^2.43.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"googleapis": "^137.1.0",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"joi": "^17.13.0",
"jsonwebtoken": "^9.0.2",
"midtrans-client": "^1.3.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"nodemon": "^3.1.0",
"otpauth": "^9.2.4",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"prisma": "^5.13.0",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
}
}