-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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": "Bears-Team-15",
"version": "1.0.0",
"description": "Johnny D's Barber Shop Website",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"start": "node server.js",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"lint": "./node_modules/.bin/eslint ./api/**/*.js",
"frontend-install": "npm install --prefix client",
"frontend": "npm start --prefix client",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage7/Bears-Team-15.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chingu-voyage7/Bears-Team-15/issues"
},
"homepage": "https://github.com/chingu-voyage7/Bears-Team-15#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.1.10",
"mongoose": "^5.3.13",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^10.9.0"
},
"devDependencies": {
"nodemon": "^1.18.7"
}
}