forked from provectus/internship_devops_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "pern-stack-database",
"version": "1.0.0",
"description": "Full stack database app",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm start --prefix client",
"server": "nodemon server",
"start": "node server",
"heroku-postbuild": "cd client && npm install & npm run build",
"migrate": "node-pg-migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewJBateman/pern-stack-database.git"
},
"author": "AndrewJBateman",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndrewJBateman/pern-stack-database/issues"
},
"homepage": "https://github.com/AndrewJBateman/pern-stack-database#readme",
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-pg-migrate": "5.9.0",
"npm-cli": "^0.1.0",
"pg": "^8.6.0",
"request": "^2.88.2",
"request-promise": "^4.2.5"
}
}