-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 6.11 KB
/
Copy pathpackage.json
File metadata and controls
151 lines (151 loc) · 6.11 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "wallet",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build --webpack",
"db:format": "prisma format",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:update": "prisma format && prisma db push && prisma generate",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prestart": "prisma migrate deploy",
"start": "next start",
"test": "node scripts/run-tests.mjs",
"test:cjs": "jest",
"test:esm": "node --experimental-vm-modules node_modules/jest/bin/jest.js -c jest.esm.config.mjs --passWithNoTests",
"test:bot:unit": "node scripts/run-tests.mjs src/__tests__/botAuth.test.ts src/__tests__/botMe.test.ts src/__tests__/createWallet.bot.test.ts src/__tests__/walletIds.bot.test.ts src/__tests__/pendingTransactions.bot.test.ts src/__tests__/freeUtxos.bot.test.ts src/__tests__/addTransaction.bot.test.ts src/__tests__/nativeScript.bot.test.ts src/__tests__/governanceActiveProposals.test.ts src/__tests__/botBallotsUpsert.test.ts src/__tests__/signTransaction.bot.test.ts src/__tests__/submitDatum.bot.test.ts src/__tests__/resolveUtxoRefsFromChain.test.ts src/__tests__/resolveDRepAnchorFromUrl.test.ts src/__tests__/normalizePoolId.test.ts src/__tests__/createPendingMultisigTransaction.test.ts src/__tests__/proxyUtxos.test.ts src/__tests__/proxyTxBuilders.test.ts src/__tests__/proxySetup.bot.test.ts src/__tests__/proxyCleanup.bot.test.ts src/__tests__/proxyAccess.test.ts src/__tests__/proxySetupFinalization.test.ts src/__tests__/proxyCleanupFinalization.test.ts src/__tests__/proxyCiPreflight.test.ts src/__tests__/proxyCiOrphanAdoption.test.ts src/__tests__/proxyCiChainRecovery.test.ts src/__tests__/proxyBotSelection.test.ts src/__tests__/proxyCleanupRuntime.test.ts src/__tests__/ciSigningSelection.test.ts src/__tests__/ciScenarioManifest.test.ts",
"test:bot:integration": "jest src/__tests__/botApi.integration.test.ts --runInBand",
"test:bot": "npm run test:bot:unit && npm run test:bot:integration",
"test:watch": "jest --watch",
"test:coverage": "node scripts/run-tests.mjs --coverage",
"test:ci": "node scripts/run-tests.mjs --ci --coverage --runInBand",
"test:trpc": "jest -c jest.trpc.config.mjs --runInBand",
"analyze": "ANALYZE=true npm run build",
"apply-project": "node scripts/apply-project-to-github.mjs"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@meshsdk/core": "^1.9.0",
"@meshsdk/core-csl": "^1.9.0",
"@meshsdk/core-cst": "^1.9.0",
"@meshsdk/provider": "^1.9.0-beta.101",
"@meshsdk/react": "^2.0.0-beta.2",
"@octokit/core": "^6.1.2",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@react-three/drei": "^9.112.0",
"@react-three/fiber": "^8.17.7",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.50.0",
"@trpc/client": "^11.17.0",
"@trpc/next": "^11.17.0",
"@trpc/react-query": "^11.0.0-rc.446",
"@trpc/server": "^11.0.0-rc.446",
"@utxos/sdk": "^0.0.78",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dexie": "^4.0.11",
"formidable": "^3.5.4",
"framer-motion": "^11.11.9",
"geist": "^1.3.0",
"idb-keyval": "^6.2.1",
"jsonld": "^9.0.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.439.0",
"next": "16.2.6",
"next-auth": "^4.24.14",
"papaparse": "^5.5.3",
"pg": "^8.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"superjson": "^2.2.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-react": "^5.22.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"three": "^0.168.0",
"three-globe": "^2.31.1",
"uuid": "^11.1.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@jest/globals": "^30.1.2",
"@next/bundle-analyzer": "^16.2.6",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.17.7",
"@types/cors": "^2.8.18",
"@types/eslint": "^8.56.10",
"@types/formidable": "^3.5.1",
"@types/jest": "^30.0.0",
"@types/jsonld": "^1.5.15",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20.14.10",
"@types/papaparse": "^5.3.16",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.1",
"@types/react-dom": "^19.2.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-react": "^5.18.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.7",
"jest": "^30.1.3",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^7.8.0",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.4.4",
"typescript": "^5.5.3"
},
"ct3aMetadata": {
"initVersion": "7.37.0"
},
"packageManager": "npm@10.7.0",
"overrides": {
"ip": "^2.0.1",
"rimraf": "^6.1.2",
"glob": "^11.0.0",
"three-mesh-bvh": "^0.9.3",
"node-domexception": "^2.0.2",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"undici": "^6.23.0",
"elliptic": "^6.5.7",
"@peculiar/webcrypto": "1.5.0",
"npm": "^11.0.0"
}
}