forked from alexanderaugusto/locus-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "api-nodejs",
"version": "1.0.0",
"description": "This is the api rest of Locus",
"main": "server.js",
"repository": "https://github.com/alexanderaugusto/locus-api",
"author": "Alexander Augusto",
"license": "MIT",
"scripts": {
"start": "node swagger.js",
"dev": "nodemon server.js --ignore __tests__",
"pretest": "cross-env NODE_ENV=test STORAGE_TYPE=local sequelize db:migrate",
"test": "cross-env NODE_ENV=test STORAGE_TYPE=local jest --runInBand",
"posttest": "cross-env NODE_ENV=test STORAGE_TYPE=local sequelize db:migrate:undo:all"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.23.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"factory-girl": "^5.0.4",
"faker": "^5.1.0",
"googleapis": "^91.0.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"mysql2": "^2.3.0",
"nodemailer": "^6.4.2",
"nodemailer-express-handlebars": "^4.0.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"swagger-autogen": "^2.11.0",
"swagger-ui-express": "^4.1.6",
"yup": "^0.29.3"
},
"devDependencies": {
"cross-env": "^7.0.2",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0",
"sqlite3": "^5.0.0",
"supertest": "^4.0.2"
}
}