-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.54 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.54 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
{
"name": "gluon-ergo-ui",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"dev:gold": "node -e \"require('fs').copyFileSync('.env.gold', '.env.local')\" && bun run dev",
"dev:dollar": "node -e \"require('fs').copyFileSync('.env.dollar', '.env.local')\" && bun run dev",
"buildtest": "next build",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@fleet-sdk/core": "^0.8.1",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-three/fiber": "^9.1.4",
"@types/lodash": "^4.17.17",
"@types/three": "^0.177.0",
"axios": "^1.9.0",
"bignumber.js": "^9.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ergo-lib-wasm-browser": "^0.28.0",
"ergo-lib-wasm-nodejs": "^0.28.0",
"framer-motion": "^11.17.0",
"gluon-ergo-sdk": "^1.0.2",
"json-bigint": "^1.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.471.0",
"motion": "^12.19.2",
"next": "16.0.10",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-number-format": "^5.4.4",
"recharts": "^2.12.0",
"sonner": "^2.0.5",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.177.0",
"usehooks-ts": "^3.1.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@nautilus-js/eip12-types": "^0.1.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/bun": "^1.3.3",
"@types/json-bigint": "^1.0.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
}
}