-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "fastify-api",
"version": "1.0.0",
"private": true,
"author": "Nicola Bovolato",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "NODE_ENV=production node dist/index.js",
"start:dev": "nodemon -w src -e . --exec 'tsc && SWCRC=true node --inspect -r @swc-node/register src/index.ts | pino-pretty -c -t'",
"build": "swc src -d dist",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:unit": "vitest run --dir test/unit",
"test:integration": "vitest run --dir test/integration",
"lint": "tsc && eslint src test"
},
"dependencies": {
"@fastify/swagger": "^8.4.0",
"@fastify/swagger-ui": "^1.8.1",
"@fastify/type-provider-typebox": "^3.2.0",
"@sinclair/typebox": "^0.28.11",
"bullmq": "^3.13.4",
"close-with-grace": "^1.2.0",
"dotenv": "^16.0.3",
"fastify": "^4.17.0",
"ioredis": "^5.3.2",
"kysely": "^0.24.2",
"paseto": "^3.1.4",
"pg": "^8.11.0",
"pino": "^8.14.1"
},
"devDependencies": {
"@swc-node/register": "^1.6.5",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.58",
"@types/node": "^20.1.7",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitest/coverage-c8": "^0.31.1",
"@vitest/ui": "^0.31.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vitest": "^0.31.1"
}
}