-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "concurrently \"node -r esm server.js\" \"sequelize db:seed:all\"",
"start:dev": "concurrently \"nodemon -r esm --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node seeders/20191029002323-CreateUserTypes.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.2",
"nodemon": "^1.18.7"
},
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"concurrently": "^4.1.2",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"esm": "^3.2.25",
"express": "^4.16.3",
"if-env": "^1.0.4",
"morgan": "^1.9.1",
"mysql2": "^2.0.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react": "^16.11.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.11.0",
"react-pose": "^4.0.9",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"reactstrap": "^8.1.1",
"sequelize": "^4.44.3",
"sequelize-cli": "^5.5.1",
"universal-cookie": "^4.0.2"
}
}