-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "camperr",
"version": "1.0.0",
"description": "MERN stack app",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js ",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"client": "npm start --prefix client",
"sass-watch": "sass --watch ./client/src/styles/styles.scss ./client/src/styles/styles.css",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run sass-watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/asia-jankowska00/camperr.git"
},
"author": "Joanna Jankowska",
"license": "ISC",
"bugs": {
"url": "https://github.com/asia-jankowska00/camperr/issues"
},
"homepage": "https://camperr.herokuapp.com/",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^5.2.0",
"config": "^3.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.22",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"node-geocoder": "^3.27.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}