-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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": "react-blogging",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./server",
"dev": "nodemon ./server",
"dev:debug": "DEBUG=react-blogging* npm run dev",
"lint": "eslint .",
"build": "cd client && npm install --production=false && npm run build && cd ..",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@ironh/eslint-config": "^0.0.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.15.0",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.4",
"datauri": "^2.0.0",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"http-errors": "^1.7.3",
"mongoose": "^=5.6.13",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.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"
}
}