-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "web-library-api",
"version": "0.0.1",
"main": "index.js",
"license": "ISC",
"engines": {
"node": "12.19.0",
"yarn": "1.22.10"
},
"scripts": {
"start": "node index.js",
"lint": "eslint './**/*.js'",
"doc": "apidoc -f \"./src/routes/.*\\\\.js$\" -i ./ -o apidoc/"
},
"dependencies": {
"apidoc": "^0.25.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.5",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.16",
"nodemailer-express-handlebars": "^4.0.0",
"nodemailer-smtp-transport": "^2.7.4",
"nodemon": "^2.0.4",
"objection": "^2.2.3",
"ramda": "^0.27.1",
"randomstring": "^1.1.5",
"sequelize": "^6.3.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5"
},
"apidoc": {
"title": "Web-library API",
"url" : "http://localhost:3339"
}
}