-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.78 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
{
"name": "sorostream-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && node scripts/check-i18n.mjs",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"a11y": "playwright test --config=playwright.a11y.config.ts",
"generate-icons": "node scripts/generate-icons.mjs"
},
"dependencies": {
"@sorostream/sdk": "^0.1.0",
"@stellar/freighter-api": "^3.0.0",
"@stellar/stellar-sdk": "^13.0.0",
"fuse.js": "^7.4.2",
"next": "14.2.5",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.9.0",
"web-vitals": "4.2.4"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.61.1",
"@storybook/addon-essentials": "^8.6.18",
"@storybook/addon-interactions": "^8.6.18",
"@storybook/addon-links": "^8.6.18",
"@storybook/builder-vite": "^8.6.18",
"@storybook/nextjs": "^8.6.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.19",
"cross-env": "10.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"jsdom": "^29.1.1",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"vitest": "^2.1.9"
},
"overrides": {
"html-encoding-sniffer": "2.0.1"
}
}