-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "flatswap",
"version": "1.0.0",
"main": "server.js",
"homepage": "https://flat-swap.herokuapp.com/",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js --ignore client",
"lint": "node_modules/.bin/eslint .",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"dev:server": "cd client && yarn build && cd .. && yarn start",
"start": "node server.js",
"heroku-postbuild": "cd client && yarn && yarn run build"
},
"engines": {
"node": "^8.12.0"
},
"dependencies": {
"ajv": "^6.5.4",
"axios": "^0.18.0",
"bcrypt": "^3.0.1",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"heroku": "^7.18.3",
"http-proxy-middleware": "^0.19.0",
"jsonwebtoken": "^8.3.0",
"merge": "^1.2.1",
"mongodb": "^3.1.6",
"mongoose": "^5.2.17",
"multer": "^1.4.0",
"npm": "^6.4.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-places-autocomplete": "^7.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "^2.1.5",
"redux": "^4.0.0",
"semantic-ui-react": "^0.82.5",
"serve": "^10.0.2"
},
"devDependencies": {
"concurrently": "^3.6.1"
}
}