-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.23 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
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
{
"name": "nestjs-starter",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare-command-husky": "husky install",
"prepare-command-prisma": "prisma generate",
"prepare": "pnpm run /^prepare-command-.*/",
"lint-staged-command-prisma": "prisma format",
"lint-staged-command-format": "nx format:write --uncommitted",
"start": "nx serve",
"start:api": "nx serve api",
"build": "nx build",
"test": "nx test",
"format:check": "nx format:check",
"format:write": "nx format:write",
"affected:lint": "nx affected:lint --maxWarnings 0 --parallel",
"affected:lint:fix": "nx affected:lint --maxWarnings 0 --parallel --fix",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:reset": "prisma migrate reset",
"prisma:db:push": "npx prisma db push",
"prisma:db:seed": "prisma db seed",
"prisma:validate": "prisma validate",
"prisma:format": "prisma format",
"prisma:generate": "prisma generate",
"gen:lib:nest": "nx g @nestjs-starter/workspace:nest-library",
"rm:lib": "nx g @nx/workspace:remove",
"mv:lib": "nx g @nx/workspace:move"
},
"prisma": {
"seed": "ts-node --skip-project prisma/seed.ts"
},
"private": true,
"dependencies": {
"@nestjs/common": "10.3.9",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "10.3.9",
"@nestjs/platform-express": "10.3.9",
"@nestjs/swagger": "7.3.1",
"@prisma/client": "^5.17.0",
"@quixo3/prisma-session-store": "^3.1.10",
"@swc/helpers": "0.5.11",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"nestjs-pino": "^4.1.0",
"pino-http": "^8.3.3",
"pino-pretty": "^10.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"swagger-ui-express": "^4.6.2",
"tslib": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.9",
"@nx/devkit": "19.3.2",
"@nx/eslint": "19.3.2",
"@nx/eslint-plugin": "19.3.2",
"@nx/jest": "19.3.2",
"@nx/js": "19.3.2",
"@nx/nest": "19.3.2",
"@nx/node": "19.3.2",
"@nx/plugin": "19.3.2",
"@nx/vite": "19.3.2",
"@nx/web": "19.3.2",
"@nx/webpack": "19.3.2",
"@nx/workspace": "19.3.2",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.14",
"@swc/core": "1.5.7",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jest": "29.5.0",
"@types/node": "18.19.9",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@vitest/ui": "^1.3.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-environment-node": "^29.4.1",
"jsonc-eslint-parser": "^2.2.0",
"lint-staged": "^13.2.0",
"nx": "19.3.2",
"prettier": "2.8.5",
"prisma": "^5.17.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"ts-toolbelt": "^9.6.0",
"typescript": "5.4.5",
"vite": "^5.0.0",
"vite-plugin-dts": "~3.8.1",
"vitest": "^1.3.1"
},
"lint-staged": {
"*.{ts,tsx,js,css,md,json,prisma}": "pnpm run /^lint-staged-command-.*/"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0 <9.0.0"
}
}