-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "imagenius-app",
"version": "0.0.3",
"description": "App for share and comment photos.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon -r dotenv/config src/index.js",
"doc": "jsdoc -c jsdoc.json src/",
"clean": "rimraf docs/"
},
"author": "AngelQS",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^6.5.5",
"bcrypt": "^4.0.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"fs-extra": "^9.0.0",
"jsonwebtoken": "^8.5.1",
"md5": "^2.2.1",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"mongoose": "^5.9.5",
"multer": "^1.4.2",
"node-cron": "^2.0.3",
"nodemailer": "^6.4.6",
"nunjucks": "^3.2.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"randomstring": "^1.1.5",
"retire": "^2.1.2",
"session-file-store": "^1.4.0",
"twilio": "^3.41.1"
},
"devDependencies": {
"better-docs": "^2.0.0",
"chalk": "^3.0.0",
"dotenv": "^8.2.0",
"jsdoc": "^3.6.4",
"jsdoc-http-plugin": "^0.3.2",
"jsdoc-mermaid": "^1.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2"
}
}