-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.01 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
{
"name": "modular-pets",
"version": "1.0.0",
"description": "Modular Monolith Pet Shop App",
"main": "dist/app.js",
"scripts": {
"dev": "bun --watch src/app.ts",
"build": "bun build src/app.ts --target bun --outdir ./dist",
"start": "NODE_ENV=production bun dist/app.js",
"test": "bun test src/modules/pet/pets/use-cases/ src/modules/pet/species/use-cases/ src/modules/pet/breeds/use-cases/ src/modules/health/patients/use-cases/",
"test:e2e": "bun test src/modules/pet/pets/controllers/ src/modules/pet/species/controllers/ src/modules/pet/breeds/controllers/ src/modules/health/patients/controllers/ --preload src/modules/shared/utilities/test-setup.ts",
"test:performance": "k6 run --out web-dashboard scripts/performance-test.ts",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"lint": "eslint --fix",
"check": "eslint .",
"check:types": "tsc --noEmit",
"db:clean": "bun run scripts/clean-db.ts"
},
"dependencies": {
"@elysiajs/opentelemetry": "^1.1.7",
"@elysiajs/swagger": "^1.1.6",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.38.2",
"drizzle-typebox": "^0.2.0",
"elysia": "latest",
"pg": "^8.13.1",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/bun": "latest",
"@types/k6": "^0.54.2",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.30.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ViniciusCestarii/modular-pets.git"
},
"keywords": [
"pet",
"monolith",
"modular"
],
"author": "ViniciusCestarii",
"license": "MIT",
"bugs": {
"url": "https://github.com/ViniciusCestarii/modular-pets/issues"
},
"homepage": "https://github.com/ViniciusCestarii/modular-pets#readme"
}