-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.59 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
{
"name": "scaffold-stellar-frontend",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "npm@11.5.1",
"scripts": {
"dev": "concurrently \"stellar scaffold watch --build-clients\" \"vite\"",
"start": "concurrently \"stellar scaffold watch --build-clients\" \"vite\"",
"build": "tsc -b && vite build",
"install:contracts": "npm install --workspace=packages && npm run build --workspace=packages",
"preview": "vite preview",
"typecheck": "tsc -b --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:docs": "npx markdownlint-cli2 '**/*.md' '#node_modules' '#packages' '#target' '#.github'",
"format": "prettier . --write",
"format:check": "prettier . --check",
"audit:security": "npm audit --omit=dev --audit-level=moderate",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.9.5",
"@noble/curves": "^2.0.1",
"@stellar/design-system": "^3.1.5",
"@stellar/stellar-sdk": "^14.2.0",
"@stellar/stellar-xdr-json": "^23.0.0",
"@tanstack/react-query": "^5.90.2",
"lossless-json": "^4.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.3",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.20",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.0.6",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-dom": "^2.0.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"eslint-plugin-react-x": "^2.0.3",
"glob": "^11.0.3",
"globals": "^16.4.0",
"happy-dom": "^20.0.10",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"markdownlint-cli2": "^0.22.0",
"prettier": "3.6.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.11",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.6"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix --no-warn-ignored"
],
"**/*": [
"prettier --write --ignore-unknown"
]
}
}