-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
{
"name": "dashskins",
"version": "0.0.1",
"description": "",
"author": "Gustavo Murdiga",
"private": true,
"license": "UNLICENSED",
"type": "commonjs",
"scripts": {
"build": "nest build",
"start": "nest start",
"dev": "nest start --watch",
"debug": "nest start --debug --watch",
"prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e:watch": "vitest --config ./vitest.e2e.config.mjs",
"test:e2e": "vitest run --config ./vitest.e2e.config.mjs"
},
"dependencies": {
"@nestjs/common": "^10.3.4",
"@nestjs/config": "^3.2.1",
"@nestjs/core": "^10.3.4",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.4",
"@nestjs/serve-static": "^4.0.1",
"@nestjs/swagger": "^7.3.0",
"@prisma/client": "^5.11.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@gm-dev/eslint-config": "^1.0.29",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.4",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.8",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.30",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^2.0.16",
"prisma": "^5.11.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3",
"unplugin-swc": "^1.4.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
}
}