-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "express-shortlink-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"lint": "eslint .",
"lint:fix": "eslint --fix ./*.js",
"test": "jest --no-cache --detectOpenHandles --coverage --runInBand",
"testauth": "jest ./src/api/v1/test/auth.test.js --no-cache --detectOpenHandles --coverage --runInBand"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"bcrypt": "^5.1.1",
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "^4.21.1",
"dotenv": "^16.4.5",
"express-validator": "^6.15.0",
"google-auth-library": "^8.9.0",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.10.0",
"nodemailer": "^6.9.15",
"otp-generator": "^4.0.1",
"pg": "^8.13.0",
"sequelize": "^6.37.4",
"short-unique-id": "^4.4.4"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"jest": "^29.5.0",
"supertest": "^6.3.3"
}
}