forked from stellar-alerts-labs/stellar-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.41 KB
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
{
"name": "stellar-alerts",
"version": "1.0.0",
"description": "Stellar Payment Tracker",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"dev:api": "npm run dev --workspace=api",
"dev:worker": "npm run dev:worker --workspace=api",
"dev:reporting": "npm run dev:reporting --workspace=api",
"dev:web": "npm run dev --workspace=web",
"dev:collab": "npm run dev:collab --workspace=web",
"db:push": "npm run db:push --workspace=api",
"db:migrate": "npm run db:migrate --workspace=api",
"db:studio": "npm run db:studio --workspace=api",
"test:api": "npm run test --workspace=api",
"test:e2e": "npm run test:e2e --workspace=api",
"test:coverage": "npm run test:coverage --workspace=api",
"test": "npm run test --workspaces --if-present",
"generate:types": "tsx scripts/generate-types.ts",
"generate:types:check": "tsx scripts/generate-types.ts --check",
"benchmark:stream": "tsx scripts/benchmark-stream.ts",
"security:audit": "osv-scanner scan source -r . --config osv-scanner.toml",
"prepare": "husky"
},
"packageManager": "npm@10.8.2",
"dependencies": {
"@prisma/client": "^6.19.3"
},
"devDependencies": {
"eslint": "^9.39.5",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"openapi-typescript": "^7.13.0",
"tsx": "^4.23.1",
"turbo": "^2.1.0",
"typescript": "^5.9.3"
}
}