forked from JackZheng10/Gonzalo-Law-Client-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.59 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": "client_portal_heroku_deployment",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"install-all": "concurrently \"npm install\" \"cd client && npm install\"",
"client": "cd client && npm start",
"server": "nodemon server/server.js",
"dev": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"build": "cd client && npm build",
"start": "node server/server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"preinstall": "cd server && node gcpSetup.js"
},
"dependencies": {
"@google-cloud/storage": "^4.7.0",
"array.prototype.flat": "^1.2.3",
"autoprefixer": "^9.7.4",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"concurrently": "^3.6.0",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.4",
"crypto-random-string": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"googleapis": "^49.0.0",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"md5": "^2.2.1",
"mocha": "^6.2.1",
"moment": "^2.24.0",
"mongoose": "^5.8.3",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.0.2",
"nodemailer": "^6.4.6",
"nodemon": "^1.18.10",
"react-big-calendar": "^0.20.4",
"react-datepicker": "^2.14.1",
"react-moment": "^0.9.7",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}