-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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": "react-redux-widget-calculator",
"version": "1.0.0",
"description": "Widget Calculator, based on the application I use for work, with authentication and database manipulation",
"engines": {
"node": "8.11.1",
"npm": "6.8.0"
},
"main": "server.js",
"scripts": {
"server-dev": "nodemon server.js",
"client-dev": "npm start --prefix client",
"start-dev": "concurrently \"npm run server-dev\" \"npm run client-dev\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikeM711/React-Redux-Widget-Calculator.git"
},
"author": "Michael McCabe",
"license": "MIT",
"bugs": {
"url": "https://github.com/MikeM711/React-Redux-Widget-Calculator/issues"
},
"homepage": "https://github.com/MikeM711/React-Redux-Widget-Calculator#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-promise-router": "^3.0.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.17.1",
"mysql2": "^1.6.5",
"nodemon": "^1.19.0",
"passport": "^0.4.0",
"passport-google-token": "^0.1.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^6.4.2",
"react-google-login": "^5.0.7",
"sequelize": "^5.6.0"
}
}