-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.03 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "paper.fun",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "dotenv turbo run dev",
"dev:web": "dotenv -- turbo run dev --filter=web",
"dev:api": "dotenv -- turbo run dev --filter=api",
"dev:ws": "dotenv -- turbo run dev --filter=ws",
"dev:price": "dotenv -- turbo run dev --filter=price-ingestion-worker",
"dev:candle": "dotenv -- turbo run dev --filter=candle-aggregation-worker",
"dev:backend": "dotenv -- turbo run dev --filter=api --filter=ws --filter=price-ingestion-worker --filter=candle-aggregation-worker",
"dev:all": "dotenv -- turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:e2e": "vitest run tests/e2e",
"test:web": "vitest run --config vitest.config.web.ts",
"test:all": "vitest run && vitest run --config vitest.config.web.ts",
"test:setup": "bun run scripts/setup-test-db.ts",
"check-circular": "node scripts/check-circular-deps.mjs",
"visualize-deps": "node scripts/visualize-deps.mjs",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/express": "^5.0.0",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.5.8",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^1.6.0",
"bs58": "^6.0.0",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"jsdom": "^27.4.0",
"prettier": "^3.7.4",
"supertest": "^7.0.0",
"turbo": "^2.7.0",
"tweetnacl": "^1.0.3",
"typescript": "5.4.5",
"vitest": "^1.6.0",
"ws": "^8.14.2"
},
"engines": {
"node": ">=20.9.0"
},
"packageManager": "bun@1.3.2",
"workspaces": [
"apps/*",
"packages/*",
"workers/*"
],
"dependencies": {
"@prisma/client": "^6",
"decimal.js": "^10.6.0",
"express": "^5.2.1",
"prisma": "^6"
}
}