-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.24 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
{
"name": "scaffold-stellar-frontend",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "npm start",
"start": "concurrently --kill-others-on-fail --names stellar,vite -c gray,green --pad-prefix \"stellar scaffold watch --build-clients\" \"vite\"",
"build": "tsc -b && vite build",
"install:contracts": "npm install --workspace=packages && npm run build --workspace=packages",
"contracts:bootstrap": "python3 scripts/local_contract_bootstrap.py",
"contracts:bootstrap:dry-run": "python3 scripts/local_contract_bootstrap.py --dry-run",
"preview": "vite preview",
"test:docs": "node --test tests/*.test.mjs",
"lint": "eslint .",
"format": "prettier . --write",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.9.5",
"@stellar/design-system": "^3.2.5",
"@stellar/stellar-sdk": "^14.3.3",
"@stellar/stellar-xdr-json": "^23.0.0",
"@tanstack/react-query": "^5.90.11",
"lossless-json": "^4.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.6",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/lodash": "^4.17.21",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-dom": "^2.3.11",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-react-x": "^2.3.11",
"glob": "^13.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-plugin-wasm": "^3.5.0"
},
"lint-staged": {
"**/*": [
"eslint --fix --no-warn-ignored",
"prettier --write --ignore-unknown"
]
},
"packageManager": "[email protected]+sha512.845196026aab1cc3f098a0474b64dfbab2afe7a1b4e91dd86895d8e4aa32a7a6d03049e2d0ad770bbe4de023a7122fb68c1a1d6e0d033c7076085f9d5d4800d4"
}