-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "user-game-api",
"version": "1.0.0",
"description": "Simple game api that store user account, biodata, and game histories",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"postinstall": "npx sequelize-cli db:migrate",
"test": "npx jest --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"ejs": "^3.0.2",
"express": "^4.17.3",
"express-ejs-layouts": "^2.5.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"nodemailer": "^6.7.5",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.7.3",
"sequelize": "^6.18.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"jest": "^28.0.1",
"nodemon": "^2.0.15",
"sequelize-cli": "^6.4.1",
"supertest": "^6.2.3"
}
}