-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 4.18 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
{
"name": "doppler-api",
"version": "0.2.0",
"private": true,
"packageManager": "npm@10.9.8",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"prepare": "lefthook install || true",
"dev": "tsx watch src/app/server.ts",
"start": "node dist/server.js",
"build": "tsc -p tsconfig.json --noEmit && esbuild src/app/server.ts --bundle --platform=node --format=esm --target=node22 --packages=external --outfile=dist/server.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "oxlint --deny-warnings",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"fix": "npm run format && npm run lint:fix",
"check": "npm run format:check && npm run lint && npm run typecheck && npm test",
"test": "node scripts/test-runner.mjs",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:static": "vitest run tests/integration/create-launch.test.ts --testNamePattern=\"static launch:\"",
"test:dynamic": "vitest run tests/integration/create-launch.test.ts --testNamePattern=\"dynamic launch:\"",
"test:live": "node scripts/test-runner.mjs --live-only",
"test:live:static": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=static vitest run tests/live/create-and-verify.test.ts",
"test:live:dynamic": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=dynamic vitest run tests/live/create-and-verify.test.ts",
"test:live:uniswap-v2": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=uniswap-v2 vitest run tests/live/create-and-verify.test.ts",
"test:live:uniswap-v4": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=uniswap-v4 vitest run tests/live/create-and-verify.test.ts",
"test:live:multicurve": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=multicurve vitest run tests/live/create-and-verify.test.ts",
"test:live:multicurve:defaults": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=multicurve-defaults vitest run tests/live/create-and-verify.test.ts",
"test:live:fees": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=fees vitest run tests/live/create-and-verify.test.ts",
"test:live:governance": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=governance vitest run tests/live/create-and-verify.test.ts",
"test:live:solana": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:devnet": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-devnet vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:defaults": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-defaults vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:fees": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-fees vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:cpmm": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-cpmm vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:no-migration": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-no-migration vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:random": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-random vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:cosigner": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-cosigner vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:dynamic-fee": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-dynamic-fee vitest run tests/live/create-and-verify.test.ts",
"test:live:solana:failing": "LIVE_TEST_ENABLE=true LIVE_TEST_FILTER=solana-failing vitest run tests/live/create-and-verify.test.ts",
"test:all": "node scripts/test-runner.mjs --with-live"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.4",
"@solana/kit": "^6.3.1",
"@whetstone-research/doppler-sdk": "^1.0.33",
"dotenv": "^16.4.5",
"fastify": "^5.8.1",
"fastify-plugin": "^5.1.0",
"ioredis": "^5.10.0",
"pino": "^9.5.0",
"viem": "^2.21.53",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.1",
"esbuild": "^0.27.3",
"lefthook": "^2.1.6",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.0.18"
}
}