2023-09-01 12:23:50 +00:00
|
|
|
{
|
|
|
|
"name": "typeorm-sample",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Awesome project developed with TypeORM.",
|
|
|
|
"type": "commonjs",
|
|
|
|
"devDependencies": {
|
2023-09-01 16:05:47 +00:00
|
|
|
"@types/express": "^4.17.17",
|
2023-09-01 12:23:50 +00:00
|
|
|
"@types/node": "^16.11.10",
|
2023-09-01 16:05:47 +00:00
|
|
|
"ts-node": "10.7.0",
|
2023-09-01 12:23:50 +00:00
|
|
|
"typescript": "4.5.2"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-01 16:05:47 +00:00
|
|
|
"body-parser": "^1.19.1",
|
2023-09-01 12:23:50 +00:00
|
|
|
"express": "^4.17.2",
|
2023-09-01 16:05:47 +00:00
|
|
|
"mysql": "^2.14.1",
|
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"typeorm": "0.3.17"
|
2023-09-01 12:23:50 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "ts-node src/index.ts",
|
2023-09-01 14:36:01 +00:00
|
|
|
"typeorm": "typeorm-ts-node-commonjs",
|
2023-09-01 16:17:22 +00:00
|
|
|
"serve": "git pull && npm i && npx tsc && node ./build/index.js"
|
2023-09-01 12:23:50 +00:00
|
|
|
}
|
2023-09-01 16:05:47 +00:00
|
|
|
}
|