-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "ripcamp",
"version": "1.0.0",
"description": "find the best surf spots in town",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon app.js",
"start": "node app.js",
"debug": "node --inspect app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CampbellOleson/RipCamp.git"
},
"author": "campbell, kevin, anthony",
"license": "ISC",
"bugs": {
"url": "https://github.com/CampbellOleson/RipCamp/issues"
},
"homepage": "https://github.com/CampbellOleson/RipCamp#readme",
"dependencies": {
"@google/maps": "^0.5.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^4.1.1",
"express": "^4.17.1",
"google": "^2.1.0",
"install": "^0.13.0",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"mongo-seeding-cli": "^3.3.0-alpha.0",
"mongoose": "^5.6.9",
"npm": "^6.10.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"request": "^2.88.0",
"validator": "^11.1.0"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}