forked from StellarLock/StellarLock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.42 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
{
"name": "stellarlock",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:load": "node --loader tsx src/test/load-test-runner.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"pnpm": {
"overrides": {
"protobufjs": "^7.5.6",
"vite": ">=6.4.3",
"vitest": "^3.2.6"
}
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.7.6",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^13.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^26.3.1",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^1.16.0",
"react": "^19",
"react-dom": "^19",
"react-helmet-async": "^3.0.0",
"react-hot-toast": "^2.6.0",
"react-i18next": "^17.0.8",
"react-router-dom": "^7.17.0",
"tailwind-merge": "^3.3.1",
"web-vitals": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9",
"@storybook/addon-a11y": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-onboarding": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@tailwindcss/vite": "^4.3.1",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^14",
"@testing-library/user-event": "^14",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/ui": "^1",
"eslint": "^9",
"eslint-config-prettier": "^10",
"eslint-plugin-react-hooks": "^5",
"eslint-plugin-react-refresh": "^0.4",
"husky": "^9",
"jsdom": "^24",
"lint-staged": "^15",
"prettier": "^3",
"storybook": "^8.0.0",
"tailwindcss": "^4",
"typescript": "5.7.3",
"typescript-eslint": "^8",
"vite": "^8",
"vitest": "^1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,html}": [
"prettier --write"
]
}
}