-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "expressjs-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --reporter spec",
"start": "cross-env NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"build:doc": "apidoc -i documentations/routes -o documentations/doc",
"setup:env": "@type .env.example > .env || cp .env.example .env"
},
"apidoc": {
"title": "Doc",
"name": "Expressjs-template API documentation",
"description": "This documentation describes this API endpoints, its params, request and response",
"url": "https://localhost:3000/api/v1"
},
"keywords": [],
"author": "https://github.com/ezehlivinus",
"license": "ISC",
"dependencies": {
"accesscontrol": "^2.2.1",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mailgen": "^2.0.14",
"mongoose": "^5.10.8",
"morgan": "^1.10.0",
"nodemailer": "^6.4.16",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"grunt-apidoc": "^0.11.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.4"
}
}