-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "api-codify",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"test": "jest --runInBand",
"unitTest": "jest -i unit",
"intTest": "jest -i int",
"build": "yarn sequelize-cli db:migrate && sequelize-cli db:seed:all",
"seeds": "sequelize-cli db:seed:all",
"dev": "nodemon ./src/server.js",
"start": "node src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"async-redis": "^1.1.7",
"aws-sdk": "^2.854.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"buffer": "^6.0.3",
"connect-redis": "^5.1.0",
"cors": "^2.8.5",
"date-fns": "^2.17.0",
"dotenv": "^8.2.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.1",
"jest": "^26.6.3",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^2.0.6",
"pg": "^8.5.1",
"redis": "^3.0.2",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"supertest": "^6.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
}
}