-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "user",
"version": "1.0.0",
"description": "Serviço de usuários",
"main": "server.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add",
"npm run test-ci"
]
},
"scripts": {
"start": "node src/server.js",
"test": "jest",
"dev": "nodemon ./src/server.js",
"test-ci": "jest --passWithNoTests",
"lint": "eslint . --ext .js --fix",
"lint-ci": "eslint . --ext .js",
"cov": "jest --coverage --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lend-it/User.git"
},
"author": "Lend.it",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lend-it/User/issues"
},
"homepage": "https://github.com/Lend-it/User#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nodemailer": "^6.5.0",
"nodemailer-express-handlebars": "^4.0.0",
"path": "^0.12.7",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.5.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^1.19.2",
"prettier": "^1.19.1",
"supertest": "^6.1.3"
}
}