-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "learning-nodejs",
"version": "1.0.0",
"description": "My personal API for learning NodeJS",
"repository": "github:RafaelEmery/learning-nodejs-api",
"main": "src/server.js",
"scripts": {
"start": "nodemon src/server.js",
"test": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"keywords": [],
"author": "Rafael Emery",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"celebrate": "^12.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.1.10",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.2",
"nerds": "^1.3.6",
"nodemailer": "^6.4.10",
"pg": "^8.3.0",
"random-int": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jest": "^26.4.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}