-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.99 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
{
"name": "tradeflow-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node ./node_modules/next/dist/bin/next dev",
"build": "node ./node_modules/next/dist/bin/next build --webpack",
"start": "node ./node_modules/next/dist/bin/next start",
"lint": "node ./node_modules/eslint/bin/eslint.js .",
"typecheck": "node ./node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
"test": "node ./node_modules/jest/bin/jest.js",
"test:watch": "node ./node_modules/jest/bin/jest.js --watch"
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.2.0",
"@hookform/resolvers": "^5.2.2",
"@pinata/sdk": "^2.1.0",
"@sentry/nextjs": "^10.49.0",
"@stellar/freighter-api": "^1.7.1",
"@tailwindcss/postcss": "^4.0.0",
"@tanstack/react-query": "^5.99.2",
"axios": "^1.15.0",
"bignumber.js": "^11.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"is-callable": "^1.2.7",
"lightweight-charts": "^5.1.0",
"lucide-react": "^0.562.0",
"next": "^16.2.4",
"next-auth": "^4.24.14",
"protobufjs": "^8.0.1",
"react": "^19.2.5",
"react-confetti": "^6.4.0",
"react-countup": "^6.5.3",
"react-dom": "^19.2.5",
"react-hook-form": "^7.71.2",
"react-hot-toast": "^2.6.0",
"recharts": "^3.7.0",
"sonner": "^2.0.7",
"soroban-client": "^1.0.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"eslint": "^9.0.0",
"eslint-config-next": "^16.2.4",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"tailwind-scrollbar": "^4.0.2",
"typescript": "^5"
},
"overrides": {
"axios": "^1.15.0",
"elliptic": "^6.5.6",
"protobufjs": "^8.0.1",
"tiny-secp256k1": "^2.2.3"
}
}