-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "food-truck-finder",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0",
"express": "^4.15.4",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.2",
"mongoose-geojson-schema": "^2.1.2",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-meta-tags": "^0.3.0",
"reactstrap": "^4.8.0",
"uuid": "^3.2.1",
"validator": "^9.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanOrlovsky/foodTruckFinder.git"
},
"bugs": {
"url": "https://github.com/DanOrlovsky/foodTruckFinder/issues"
},
"homepage": "https://github.com/DanOrlovsky/foodTruckFinder#readme"
}