-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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": "mapanything",
"version": "1.0.0",
"engines": {
"node": "9.11.x"
},
"description": "credit system REST with geocoding API",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "npm start --prefix client",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CarturoStores/geoservice-credit-system.git"
},
"author": "David Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/CarturoStores/geoservice-credit-system/issues"
},
"homepage": "https://geocoder-service.herokuapp.com/",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"google-map-react": "^1.1.1",
"gravatar": "^1.8.0",
"jsonwebtoken": "^8.4.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.4",
"node-geocoder": "^3.22.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"requestify": "^0.2.5",
"sequelize": "^4.41.2",
"sequelize-cli": "^5.4.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"if-env": "^1.0.4",
"nodemon": "^1.18.8"
}
}