-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "imagegall",
"version": "1.0.0",
"description": "Image gallery app",
"main": "server.js",
"scripts": {
"start": "node server.js",
"client": "npm start --prefix client",
"server": "nodemon server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.371.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"dotenv": "^6.2.0",
"event-stream": "^4.0.1",
"express": "^4.16.4",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.4.0",
"method-override": "^3.0.0",
"mongoose": "^5.3.12",
"multer": "^1.4.1",
"multer-gridfs-storage": "^3.2.3",
"multer-s3": "^2.9.0",
"potrace": "^2.1.1",
"react-simple-animate": "^2.3.3",
"react-simple-img": "^1.4.5"
},
"devDependencies": {
"nodemon": "^1.18.6"
},
"engines": {
"node": "11.7.0"
},
"proxy": "http://localhost:5000"
}