-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "tech-talk",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "14.x"
},
"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",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"postinstall": "npm run seed",
"heroku-postbuild": "npm run build",
"seed": "cd seeders && node 20201121231954-tech-talk.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engrebecca/tech-talk.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/engrebecca/tech-talk/issues"
},
"homepage": "https://github.com/engrebecca/tech-talk#readme",
"devDependencies": {
"concurrently": "^4.1.2",
"nodemon": "^1.18.7"
},
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.23.0",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"material-ui-icons": "^1.0.0-beta.36",
"mysql2": "^2.2.5",
"newrelic": "^7.0.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0"
}
}