-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "picpay-challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start -b swc",
"dev": "nest start -b swc -w",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"prisma": {
"seed": "tsx src/infra/database/prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@golevelup/nestjs-rabbitmq": "^5.1.0",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@prisma/client": "^5.11.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.3"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@rocketseat/eslint-config": "^2.2.2",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.8",
"@types/express": "^4.17.17",
"@types/node": "^20.11.30",
"@types/supertest": "^6.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"prisma": "^5.11.0",
"supertest": "^6.3.3",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"unplugin-swc": "^1.4.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
}
}