-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend Service for pndek.in",
"main": "index.js",
"repository": "git@github.com:pndek-in/backend.git",
"author": "jal <jaluwibowoaji@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"db-create": "npx sequelize db:create",
"migrate": "npx sequelize db:migrate",
"seed": "npx sequelize db:seed:all",
"init-deploy": "npm run db-create && npm run migrate && npm run seed",
"test": "vitest"
},
"dependencies": {
"@maxmind/geoip2-node": "^5.0.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"express": "^4.19.2",
"express-ip": "^1.0.4",
"google-auth-library": "^9.5.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.10",
"pg": "^8.11.3",
"redis": "^4.7.0",
"sequelize": "^6.35.1",
"string-randomify": "^1.0.1",
"ua-parser-js": "^1.0.37"
},
"devDependencies": {
"dotenv": "^16.3.1",
"nodemon": "^3.0.2",
"sequelize-cli": "^6.6.2",
"vitest": "^2.1.8"
}
}