forked from zintarh/stellar-wrap-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.73 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
{
"name": "next-version",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test:unit": "jest",
"test:integration": "vitest run",
"test:integration:watch": "vitest",
"test:integration:ui": "vitest --ui",
"test": "pnpm test:unit && pnpm test:integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test --project=e2e-chromium",
"e2e": "playwright test --project=e2e-chromium",
"e2e:ui": "playwright test --project=e2e-chromium --ui",
"test:visual": "playwright test --project=visual-chromium",
"test:visual:update": "playwright test --project=visual-chromium --update-snapshots",
"vitest": "vitest",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lhci": "lhci autorun",
"lhci:local": "lhci autorun",
"prepare": "husky install",
"analyze": "ANALYZE=true next build",
"validate:env": "node scripts/validate-env.js"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.54",
"@creit-tech/stellar-wallets-kit": "npm:@jsr/creit-tech__stellar-wallets-kit@^2.0.0-beta.9",
"@stellar/freighter-api": "^6.0.1",
"@vercel/og": "^0.8.6",
"ai": "^3.4.10",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.1",
"framer-motion": "^12.29.0",
"gifenc": "^1.0.3",
"html2canvas": "^1.4.1",
"lucide-react": "^0.562.0",
"motion": "^12.29.2",
"next": "^16.1.4",
"next-intl": "^4.13.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.12.0",
"sonner": "^2.0.7",
"stellar-sdk": "^13.3.0",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@lhci/cli": "^0.14.0",
"@next/bundle-analyzer": "^16.1.4",
"@playwright/test": "^1.61.1",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/nextjs": "^10.4.6",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/canvas-confetti": "^1.9.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^4.0.18",
"ansi-styles": "^6.2.1",
"autocannon": "7.15.0",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"husky": "^9.0.0",
"jest": "^29",
"jsdom": "^29.1.1",
"storybook": "^10.4.6",
"tailwindcss": "^4",
"ts-jest": "^29.4.6",
"typescript": "^5",
"vitest": "^4.1.9"
}
}