-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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
{
"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": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node scripts/seedDB.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"@google-cloud/text-to-speech": "^3.2.1",
"bcrypt": "^5.0.1",
"bootstrap": "^5.0.1",
"chart.js": "^3.2.1",
"connect-mongodb-session": "^2.4.1",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.16.3",
"express-session": "^1.17.1",
"firebase": "^8.6.2",
"firebase-auth": "^0.1.2",
"if-env": "^1.0.4",
"jquery": "^3.6.0",
"mongoose": "^5.12.10",
"native": "^0.3.3",
"node-fetch": "^2.6.1",
"oauth": "^0.9.15",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0"
}
}