-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 979 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 979 Bytes
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
{
"name": "express-postgres-api",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"build": "npm-run-all build:*",
"build:clean": "shx rm -rf dist",
"build:lint": "eslint src/**/* --fix",
"build:compile": "tsc",
"watch": "nodemon --watch src -e ts --exec npm run serve",
"serve": "npm-run-all build start",
"start": "node ."
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"log4js": "^6.1.2",
"morgan": "^1.9.1",
"pg": "^7.18.2",
"rotating-file-stream": "^2.0.2"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.1",
"@types/pg": "^7.14.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"typescript": "^3.8.3"
},
"license": "MIT"
}