-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"name": "smartdrop-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev",
"dev:stack": "bash scripts/dev-stack.sh",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:coverage": "vitest run --coverage --coverage.include src/lib/soroban.ts",
"playwright": "playwright test --config e2e/playwright.config.ts",
"contributors:sync": "node scripts/sync-lernza-contributors.mjs",
"contributors:github-insights": "node scripts/record-lernza-github-coauthors.mjs"
},
"dependencies": {
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.4",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@stellar/freighter-api": "^3.1.0",
"@stellar/stellar-base": "^15.0.0",
"@stellar/stellar-sdk": "^16.0.1",
"@tanstack/react-query": "^5.60.5",
"framer-motion": "^11.11.17",
"next": "15.5.18",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.9.0",
"soroban-client": "^1.0.1",
"stellar-plus": "^0.14.4",
"zustand": "^5.0.14"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@chakra-ui/icons": "^2.2.4",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "4.1.9",
"autoprefixer": "^10.5.2",
"eslint": "^8.57.1",
"eslint-config-next": "15.5.18",
"jsdom": "^29.1.1",
"postcss": "^8.5.16",
"tailwindcss": "^4.3.2",
"typescript": "^5.6.3",
"vitest": "^4.1.9"
}
}