-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1004 Bytes
/
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": "pp2",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"engines": {
"node": "8.11.1"
},
"author": "Trey Stevens",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cloudinary": "^1.14.0",
"concurrently": "^4.1.1",
"connect-mongo": "^3.0.0",
"dotenv": "^8.0.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-session": "^1.16.2",
"express-validator": "^6.1.1",
"mime": "^2.4.4",
"mocha": "^6.1.4",
"mongoose": "^5.6.3",
"multer": "^1.4.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}