-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.44 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
49
50
51
52
{
"name": "hiking-app",
"version": "1.1.0",
"description": "Search, post and comment on trails in your area.",
"main": "server/server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "12.10.0",
"npm": "6.11.3",
"yarn": "1.19.1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"nodemon": "^2.0.4"
},
"dependencies": {
"aws-sdk": "^2.789.0",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"concurrently": "^5.2.0",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"haversine": "^1.1.1",
"if-env": "^1.0.4",
"moment": "^2.29.1",
"mongoose": "^5.9.14",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
}
}