-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.27 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "arquidiocesis-back",
"version": "1.3.0",
"description": "APP de Arquidiocesis de Monterrey",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"docs": "jsdoc -c jsdoc.json",
"start": "node index.js",
"test": "jest",
"file": "node scripts/file-manipulation.js",
"migrate-users": "node scripts/user-table-migration.js",
"start:dev": "nodemon index.js",
"lint": "node ./node_modules/eslint/bin/eslint --ext .js .",
"precommit": "lint-staged"
},
"dependencies": {
"@google-cloud/storage": "^5.8.5",
"bcrypt": "^4.0.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"csvjson": "^5.1.0",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"express-json": "^1.0.0",
"firebase-admin": "^8.10.0",
"iconv-lite": "^0.5.1",
"jest": "^26.6.3",
"jsonstream": "^1.0.3",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.8",
"moment": "^2.25.1",
"multer": "^1.4.2",
"npmi": "^4.0.0",
"prolly": "^0.5.4",
"supertest": "^6.1.3",
"web-push": "^3.4.4",
"xlsx": "^0.16.8"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.3.5",
"firestore-jest-mock": "^0.9.0",
"husky": "4.2.5",
"jest": "^26.6.3",
"jsdoc": "^3.6.4",
"lint-staged": "^10.5.4",
"markdown-js": "0.0.4",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProyectoIntegrador2018/arquidiocesis-back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ProyectoIntegrador2018/arquidiocesis-back/issues"
},
"homepage": "https://github.com/ProyectoIntegrador2018/arquidiocesis-back#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.js": [
"node ./node_modules/eslint/bin/eslint --fix"
]
}
}