-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.85 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": "heliobond-frontend",
"private": true,
"version": "0.1.0",
"description": "Heliobond — sunlight made financial. Investor app for a green-bond pool on Stellar.",
"license": "Apache-2.0",
"author": "Heliobond (https://heliobond.vercel.app)",
"homepage": "https://heliobond.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/Heliobond/frontend.git"
},
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"bundle:check": "node scripts/check-bundle-size.js",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"bash -c \"tsc --noEmit\""
]
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^2.3.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@stellar/stellar-sdk": "^16.0.1",
"next": "^16.2.9",
"next-intl": "^4.13.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"three": "^0.184.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^4.1.9",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"husky": "^9.1.7",
"jsdom": "^24.0.0",
"lint-staged": "^15.5.2",
"prettier": "^3.9.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}