-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.67 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
{
"name": "law-d-link",
"private": true,
"scripts": {
"dev-api-pm": "bun pm2-runtime start ecosystem.config.dev.js",
"prod-start": "bun pm2-runtime start ecosystem.config.js",
"dev": "bunx --bun concurrently -c \"auto\" -n api-gateway,api-auth,api-main,kim-ai \"cd services/api-gateway && bun run dev\" \"cd services/api-auth && bun run dev\" \"cd services/api-main && bun run dev\" \"cd services/kim-ai && python3.9 src/main.py\"",
"start": "bunx --bun concurrently -c \"auto\" -n api-gateway,api-auth,api-main,kim-ai \"cd services/api-gateway && bun run start\" \"cd services/api-auth && bun run start\" \"cd services/api-main && bun run start\" \"cd services/kim-ai && python3.9 src/main.py\"",
"lint": "bunx --bun concurrently -c \"auto\" -n api-gateway,api-auth,api-main \"cd services/api-gateway && bun run lint\" \"cd services/api-auth && bun run lint\" \"cd services/api-main && bun run lint\"",
"build:bin": "bunx --bun concurrently -c \"auto\" -n api-gateway,api-auth,api-main \"cd services/api-gateway && bun run build:bin\" \"cd services/api-auth && bun run build:bin\" \"cd services/api-main && bun run build:bin\"",
"build:openapi": "mkdir -p dist/openapi-doc && ./node_modules/.bin/redocly build-docs docs/OpenAPI/link-d-law.json --config infrastructures/redoc/redocly.yaml -o dist/openapi-doc/index.html",
"db:seed": "dotenv -e .env.development -- bun run prisma/seeds/index.ts",
"db:generate": "bunx prisma format && bunx prisma generate",
"db:migrate:dev": "dotenv -e .env.development -- bunx prisma migrate dev && bun db:generate",
"db:deploy": "dotenv -e .env.production -- bunx prisma migrate deploy",
"db:setup": "bun db:migrate:dev"
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"@google-cloud/storage": "^7.7.0",
"@prisma/client": "^5.5.2",
"@redocly/cli": "^1.4.1",
"@types/express-fileupload": "^1.4.4",
"@types/multer": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"bun-types": "latest",
"concurrently": "^8.2.2",
"csv-parse": "^5.5.3",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.53.0",
"express-fileupload": "^1.4.3",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"google-auth-library": "^9.4.1",
"is-stream": "^3.0.0",
"jose": "^5.1.3",
"method-override": "^3.0.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"nodemon": "^3.0.1",
"pm2": "^5.3.0",
"prisma": "^5.5.2",
"redis": "^4.6.11",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"workspaces": [
"packages/*",
"services/*",
"./*"
]
}