-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "forte",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./server",
"dev": "nodemon ./server",
"dev:debug": "DEBUG=forte* npm run dev",
"lint": "eslint ."
},
"dependencies": {
"bcrypt": "^3.0.7",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.17.0",
"connect-mongo": "^3.1.2",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"hbs": "^4.0.4",
"http-errors": "^1.7.3",
"mongoose": "^5.6.13",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.1",
"nodemailer": "^6.3.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"eslint": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2",
"@ironh/eslint-config": "^0.0.2"
}
}