-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.13.0",
"npm": "8.3.0"
},
"scripts": {
"start": "node index.js",
"client": "npm run start --prefix client",
"server": "nodemon index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"migrate": "postgrator --config postgrator-config.js",
"migrate:production": "heroku run npm run migrate",
"deploy": "git push heroku main",
"postdeploy": "npm run migrate:production",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"body-parser": "^1.19.2",
"concurrently": "^7.0.0",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"helmet": "^5.0.2",
"knex": "^1.0.4",
"morgan": "^1.10.0",
"passport": "^0.5.2",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^6.1.0",
"pg": "^8.7.3",
"postgrator-cli": "^3.2.0",
"xss": "^1.0.11"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}