-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cuidar_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cd src && nodemon server.js",
"migrate": "sequelize db:migrate",
"migrate:generate": "sequelize migration:generate",
"migrate:undo": "sequelize db:migrate:undo",
"seed": "sequelize db:seed:all",
"seed:undo": "sequelize db:seed:undo",
"seed:generate": "sequelize seed:generate",
"prettier": "prettier --write \"**/*.js\"",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thaynnara007/Cuidar_backend.git"
},
"author": "Thaynnara Gonçalves",
"license": "ISC",
"bugs": {
"url": "https://github.com/thaynnara007/Cuidar_backend/issues"
},
"homepage": "https://github.com/thaynnara007/Cuidar_backend#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run prettier",
"npm run lint",
"git add"
]
},
"dependencies": {
"@google-cloud/storage": "^5.14.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^9.11.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"nodemailer": "^6.6.3",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.14.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"sequelize-cli": "^5.5.1"
}
}