-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 804 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 804 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
{
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"pg": "^8.15.6",
"reflect-metadata": "^0.2.2",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.23"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^5.0.1",
"@types/node": "^22.15.17",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli",
"migration:generate": "npm run typeorm migration:generate -- -d src/dataSource.ts",
"migration:run": "npm run typeorm migration:run -- -d src/dataSource.ts"
}
}