forked from bakeronchain/learnvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.48 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.48 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
{
"name": "scaffold-stellar-frontend",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "npm start",
"dev:server": "npm run dev --prefix server",
"dev:ui": "vite",
"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": "if ls packages/*/package.json > /dev/null 2>&1; then npm install --workspaces && npm run build --workspaces --if-present; else echo 'No contract client packages found. Run: stellar-scaffold build --build-clients'; fi",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier . --write",
"docs:generate": "npm run docs:generate --prefix server",
"prepare": "husky",
"typecheck": "tsc",
"test": "vitest run"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.9.5",
"@stellar/design-system": "^3.2.7",
"@stellar/stellar-sdk": "^14.4.3",
"@stellar/stellar-xdr-json": "^23.0.0",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.90.17",
"@theahaco/contract-explorer": "^1.1.0",
"@theahaco/ts-config": "^1.2.0",
"canvas-confetti": "^1.9.4",
"date-fns": "^4.1.0",
"framer-motion": "^12.38.0",
"i18next": "^25.10.5",
"i18next-browser-languagedetector": "^8.2.1",
"lossless-json": "^4.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.6.2",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.12.0",
"recharts": "^2.15.1",
"tailwindcss": "^4.2.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/canvas-confetti": "^1.9.0",
"@types/lodash": "^4.17.23",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@types/recharts": "^1.8.29",
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"glob": "^13.0.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"recharts": "^3.8.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.1.1"
},
"lint-staged": {
"**/*": [
"eslint --fix --no-warn-ignored",
"prettier --write --ignore-unknown"
]
},
"prettier": "@theahaco/ts-config/prettier"
}