-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 775 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 775 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
{
"name": "bitespeed-identity-postgres",
"version": "1.0.0",
"description": "Identity reconciliation service for Bitespeed using PostgreSQL",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"migrate-js": "node scripts/migrate.js",
"seed": "node scripts/seed.js",
"teardown": "node scripts/teardown.js"
},
"dependencies": {
"@types/dotenv": "^6.1.1",
"@vercel/node": "^5.3.23",
"dotenv": "^17.2.2",
"express": "^4.18.2",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.5.0",
"@types/pg": "^8.15.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}