-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 KB
/
package.json
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
38
39
40
41
{
"name": "fastify-rest-api-typeorm",
"version": "1.0.0",
"description": "Example fastify rest api typeorm",
"main": "app.ts",
"repository": "https://github.com/iamlookod/fastify-rest-api-typeorm-typescript.git",
"author": "iamlookod",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "nodemon",
"start": "NODE_ENV=production node dist/app.js",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"dotenv": "^10.0.0",
"fastify": "^3.19.2",
"fastify-autoload": "^3.8.0",
"fastify-plugin": "^3.0.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.35"
},
"devDependencies": {
"@types/node": "^16.4.6",
"fastify-tsconfig": "^1.0.1",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"keywords": [
"fastify",
"rest-api",
"api",
"typeorm",
"postgres"
]
}