-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.42 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.42 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "liteend",
"version": "0.0.1",
"description": "Lightweight, fast, and easy to use backend app template for Node.js",
"author": "uxname",
"private": true,
"license": "MIT",
"scripts": {
"________________ BUILD AND RUN ________________": "",
"save-commit-info": "tsx src/common/git-commit-saver.ts",
"build": "rimraf dist && npm run save-commit-info && run-p lint build:nest",
"build:nest": "nest build",
"start:dev": "cross-env NODE_ENV=development nest start --watch",
"start:debug": "cross-env NODE_ENV=development nest start --debug --watch",
"prestart:prod": "npm run db:migrations:apply",
"start:prod": "cross-env NODE_ENV=production node --enable-source-maps dist/src/main",
"________________ FORMAT AND LINT ________________": "",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:fix:unsafe": "biome check --write --unsafe",
"ts:check": "tsc --noEmit",
"knip": "knip --production",
"check": "run-p ts:check lint:fix knip",
"________________ TEST ________________": "",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test": "cross-env NODE_ENV=test VITEST_TARGET=unit vitest run --silent --",
"test:e2e": "cross-env NODE_ENV=test VITEST_TARGET=e2e vitest run --silent --",
"test:all": "cross-env NODE_ENV=test VITEST_TARGET=all vitest run --silent --",
"________________ DATABASE ________________": "",
"db:push": "prisma db push && npm run db:gen",
"db:reset": "prisma migrate reset --force",
"db:migrations:apply": "prisma migrate deploy && npm run db:gen",
"db:migrations:create": "prisma migrate dev --create-only",
"db:schema:format": "prisma format",
"db:gen": "prisma generate --no-hints",
"db:studio": "prisma studio --browser none --port 5555",
"db:seed": "tsx prisma/seed.ts",
"________________ OTHER ________________": "",
"postinstall": "npm run prepare",
"prepare": "lefthook install",
"update": "npm-check-updates -u && rimraf node_modules package-lock.json && npm i",
"postupdate": "npm run lint:fix && npm run check"
},
"dependencies": {
"@bull-board/api": "^7.0.0",
"@bull-board/fastify": "^7.0.0",
"@bull-board/nestjs": "^7.0.0",
"@dotenvx/dotenvx": "^1.61.4",
"@fastify/compress": "^8.3.1",
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.1.3",
"@nestjs/bullmq": "^11.0.4",
"@nestjs/common": "^11.1.19",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^11.1.19",
"@nestjs/graphql": "^13.3.0",
"@nestjs/mercurius": "^13.3.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-fastify": "^11.1.19",
"@nestjs/swagger": "^11.4.1",
"@nestjs/terminus": "^11.1.1",
"@nestjs/websockets": "^11.1.19",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"altair-fastify-plugin": "^8.5.2",
"bullmq": "^5.76.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"cross-env": "^10.1.0",
"fastify": "5.8.5",
"graphql": "^16.13.2",
"graphql-type-json": "^0.3.2",
"graphql-ws": "^6.0.8",
"ioredis": "^5.10.1",
"jwks-rsa": "^4.0.1",
"mercurius": "^16.9.0",
"mqemitter-redis": "^7.2.0",
"mrmime": "^2.0.1",
"nestjs-i18n": "^10.7.2",
"nestjs-pino": "^4.6.1",
"nestjs-zod": "^5.3.0",
"ofetch": "^1.5.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"zod": "^4.3.6"
},
"overrides": {
"fastify": "5.8.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@fission-ai/openspec": "^1.3.1",
"@nestjs/cli": "^11.0.21",
"@nestjs/schematics": "^11.1.0",
"@nestjs/testing": "^11.1.19",
"@swc/core": "^1.15.30",
"@types/form-data": "^2.5.2",
"@types/ioredis": "^5.0.0",
"@types/node": "^25.6.0",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.5",
"form-data": "^4.0.5",
"knip": "^6.6.1",
"kodu": "^1.2.0",
"lefthook": "^2.1.6",
"npm-check-updates": "^21.0.3",
"npm-run-all": "^4.1.5",
"pactum": "^3.9.1",
"prisma": "^7.7.0",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"unplugin-swc": "^1.5.9",
"vitest": "^4.1.5"
}
}