mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
27 lines
563 B
JSON
27 lines
563 B
JSON
{
|
|
"name": "expressjs-postgres",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"author": "Jake Runzer",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "nodemon src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.19.0",
|
|
"express": "^4.17.1",
|
|
"pg": "^8.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/body-parser": "^1.19.0",
|
|
"@types/express": "^4.17.11",
|
|
"@types/pg": "^7.14.9",
|
|
"nodemon": "^2.0.7",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|