forked from nwilseystarr/con-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
53
54
55
56
57
58
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && yarn run start:prod || yarn run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"yarn run client\"",
"client": "cd client && yarn run start",
"seed": "node scripts/seedDB.js",
"install": "cd client && yarn install",
"build": "cd client && yarn run build",
"heroku-postbuild": "yarn run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"abbrev": "^1.1.1",
"axios": "^0.18.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"concurrently": "^4.1.0",
"dotenv": "^8.0.0",
"express": "^4.16.3",
"express-session": "^1.16.1",
"generate-password": "^1.4.1",
"glamour": "^1.2.3",
"glob-parent": "^5.0.0",
"http": "^0.0.0",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"match-sorter": "^3.0.0",
"nodemon": "^1.18.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.10.0",
"qrcode": "^1.3.3",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-qr-reader": "^2.2.1",
"react-router-dom": "^5.0.0",
"react-script": "^2.0.5",
"react-scroll": "^1.7.11",
"react-scroll-to-bottom": "^1.3.1",
"react-table": "^6.10.0",
"sequelize": "^5.8.0",
"socket.io": "^2.2.0",
"uuid": "^3.3.2"
}
}