-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.53 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"validate-env": "node scripts/validate-env.mjs",
"prebuild": "npm run validate-env",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true npm run build",
"check-bundle-size": "node scripts/check-bundle-size.mjs",
"bundle-report": "node scripts/generate-bundle-report.mjs",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --storybook-build-dir storybook-static",
"test:visual": "playwright test e2e/visual-regression.spec.ts --project=chromium",
"test:visual:update": "playwright test e2e/visual-regression.spec.ts --project=chromium --update-snapshots"
},
"dependencies": {
"@dnd-kit/core": "^6.0.0",
"@dnd-kit/sortable": "^6.0.0",
"@ledgerhq/hw-app-str": "^6.28.0",
"@ledgerhq/hw-transport-webhid": "^6.28.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^15.0.1",
"@tiptap/extension-link": "3.27.1",
"@tiptap/extension-placeholder": "3.27.1",
"@tiptap/pm": "3.27.1",
"@tiptap/react": "3.27.1",
"@tiptap/starter-kit": "3.27.1",
"@types/dompurify": "3.0.5",
"@use-gesture/react": "^10.3.1",
"@walletconnect/web3wallet": "^1.11.0",
"dompurify": "3.4.11",
"lucide-react": "^1.28.0",
"next": "16.3.3",
"next-intl": "^4.13.0",
"react": "19.2.4",
"react-dom": "19.2.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.2.1",
"@next/bundle-analyzer": "16.3.3",
"@playwright/test": "^1.59.1",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/nextjs-vite": "^10.4.6",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.6",
"axe-core": "^4.13.0",
"eslint": "^9",
"eslint-config-next": "16.3.3",
"jsdom": "^27.0.1",
"storybook": "^10.4.6",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3.2.4",
"vitest-axe": "^0.1.0",
"vite": "^5.4.21"
},
"overrides": {
"axios": "^1.18.0",
"elliptic": "6.6.1"
}
}