-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "mangadb",
"version": "2.5.0",
"description": "A service to help users keep a good record of their favorite manga series",
"main": "server.js",
"scripts": {
"start": "clear && node server.js",
"test": "clear && mocha tests/test-server.js || true",
"lint": "clear && eslint . || true",
"prettier": "clear && prettier --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rafase282/Mangadb.git"
},
"keywords": [
"R282",
"Rafase282",
"Manga"
],
"author": "Rafael Rodriguez",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rafase282/Mangadb/issues"
},
"homepage": "https://github.com/Rafase282/Mangadb#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.6.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.3",
"nodemailer": "^6.4.2",
"quickemailverification": "^1.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}