forked from elliotBraem/efizzybot
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@curatedotfun/api",
"version": "0.0.1",
"scripts": {
"schemas:generate": "bun ./scripts/generate-json-schemas.ts",
"build": "rspack build",
"start": "node dist/main.js",
"dev": "NODE_ENV=development concurrently --kill-others-on-fail \"rspack build --watch\" \"wait-on -d 500 dist/main.js && node scripts/dev-server.js\"",
"clean": "rm -rf dist coverage .turbo"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@module-federation/node": "^2.6.30",
"@rspack/binding": "1.2.8",
"@rspack/cli": "1.2.8",
"@rspack/core": "1.2.8",
"@types/mustache": "^4.2.6",
"axios": "^1.6.8",
"concurrently": "^9.1.2",
"drizzle-seed": "^0.3.1",
"nock": "^13.5.4",
"typescript": "^5.3.3",
"wait-on": "^8.0.2",
"zod": "^3.25.62"
},
"dependencies": {
"@crosspost/scheduler-sdk": "^0.1.1",
"@crosspost/sdk": "^0.3.0",
"@crosspost/types": "^0.3.0",
"@curatedotfun/shared-db": "workspace:*",
"@curatedotfun/types": "workspace:*",
"@curatedotfun/utils": "workspace:*",
"@fastnear/utils": "^0.9.7",
"@hono/node-server": "^1.8.2",
"@hono/zod-openapi": "^0.9.5",
"@hono/zod-validator": "^0.5.0",
"@module-federation/runtime": "^0.11.1",
"@t3-oss/env-core": "^0.13.6",
"@types/async-retry": "^1.4.9",
"@types/lodash": "^4.17.16",
"@types/pg": "^8.11.11",
"agent-twitter-client": "^0.0.16",
"async-retry": "^1.3.3",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.7.1",
"hono": "^4.0.5",
"jose": "^6.0.11",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"near-api-js": "^5.1.1",
"near-sign-verify": "^0.4.1",
"ora": "^8.1.1",
"pg": "^8.15.6",
"pinata-web3": "^0.5.4",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"remeda": "^2.22.5",
"string-width": "^7.2.0",
"zod-to-json-schema": "^3.24.5"
},
"packageManager": "pnpm@10.11.0"
}