-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.1 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
{
"name": "pxi",
"version": "1.0.0",
"description": "PXI - Macro Market Strength Index",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"typecheck:worker": "wrangler types worker/worker-configuration.d.ts --config worker/wrangler.toml && tsc -p worker/tsconfig.json",
"test:contracts": "wrangler types worker/worker-configuration.d.ts --config worker/wrangler.toml && tsc -p contracts/tsconfig.json && node --test --import tsx contracts/*.test.ts",
"test:worker-config": "node --test --import tsx worker/*.test.ts",
"test:worker-domains": "node --test --import tsx worker/domain/*.test.ts",
"test:worker-data": "node --test --import tsx worker/data/*.test.ts worker/services/*.test.ts",
"test:worker-migrations": "python3 scripts/verify_worker_migrations.py",
"test:worker-routes": "node --test --import tsx worker/routes/*.test.ts",
"test:worker": "npm run test:worker-config && npm run test:worker-domains && npm run test:worker-data && npm run test:worker-migrations && npm run test:worker-routes",
"start": "node dist/api/server.js",
"dev": "tsx src/index.ts",
"dev:server": "tsx src/api/server.ts",
"fetch": "tsx src/pipeline/fetch-all.ts",
"calculate": "tsx src/pipeline/calculate.ts",
"migrate": "tsx src/db/migrate.ts",
"refresh": "tsx src/pipeline/fetch-all.ts && tsx src/pipeline/calculate.ts",
"cron:daily": "tsx src/pipeline/cron-fast.ts",
"cron:daily:slow": "tsx src/pipeline/cron.ts",
"cron:intraday": "tsx src/pipeline/cron.ts --intraday",
"postrefresh:market": "tsx src/pipeline/postrefresh-market.ts",
"digest:send": "tsx src/pipeline/send-digest.ts"
},
"dependencies": {
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"cors": "2.8.5",
"date-fns": "^3.0.0",
"dotenv": "^16.3.1",
"express": "5.2.1",
"yahoo-finance2": "^2.9.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.18",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"wrangler": "4.54.0"
}
}