-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.94 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
{
"name": "flowstar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:update": "playwright test -u",
"prepare": "husky",
"analyze": "ANALYZE=true next build --webpack"
},
"dependencies": {
"@albedo-link/intent": "^0.13.0",
"@base-ui/react": "^1.5.0",
"@sentry/nextjs": "^8.0.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^13.3.0",
"@vercel/analytics": "1.6.1",
"@vercel/og": "^0.11.1",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/sign-client": "^2.17.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.16.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"react": "^19",
"react-dom": "^19",
"shadcn": "^4.8.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@next/bundle-analyzer": "^15.0.0",
"@next/eslint-plugin-next": "^16.2.9",
"@playwright/test": "^1.61.0",
"@tailwindcss/postcss": "^4.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^10.5.0",
"eslint-plugin-security": "^4.0.1",
"globals": "^17.7.0",
"husky": "^9.0.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.0.0",
"postcss": "^8.5",
"prettier": "^3.0.0",
"tailwindcss": "^4.2.0",
"typescript": "5.7.3",
"vitest": "^2.1.9"
}
}