-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 757 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
{
"name": "sql",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"compile": "tsc -w",
"build": "rm -rf dist && npx tsc",
"dev": "nodemon -L -e ts --exec \"yarn build && yarn start\"",
"migrate": "node-pg-migrate"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "~2.6.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/http-errors": "^2.0.1",
"@types/morgan": "^1.9.3",
"node-pg-migrate": "^6.2.2",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"typescript": "^4.9.3"
}
}