-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 908 Bytes
/
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"generateclient": "rm -r ./generated_client/*; ts-node --require tsconfig-paths/register ./generate-client.ts",
"build": "tsc && tsc-alias",
"start": "node dist/src/index.js",
"dev": "nodemon --require tsconfig-paths/register ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/swagger": "^8.2.1",
"@fastify/swagger-ui": "^1.3.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@sinclair/typebox": "^0.25.13",
"fastify": "^4.10.2"
},
"devDependencies": {
"@types/node": "^18.11.15",
"nodemon": "^2.0.20",
"orval": "^6.12.1",
"pino-pretty": "^9.4.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.3",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
}
}