forked from xwartz/simple-staking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.88 KB
/
package.json
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
{
"name": "simple-staking",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check src",
"format:fix": "prettier --write src",
"clean": "rm -r node_modules",
"build-docker": "docker build -t babylonchain/simple-staking .",
"clean-docker": "docker rmi babylonchain/simple-staking 2>/dev/null; true",
"prepare": "husky",
"sort-imports": "eslint --fix ."
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@keystonehq/animated-qr": "^0.8.6",
"@keystonehq/keystone-sdk": "^0.4.1",
"@keystonehq/sdk": "0.21.3",
"@scure/bip32": "^1.4.0",
"@tanstack/react-query": "^5.28.14",
"@tanstack/react-query-next-experimental": "^5.28.14",
"axios": "^1.6.8",
"bitcoinjs-lib": "^6.1.5",
"btc-staking-ts": "^0.2.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.1.9",
"next": "14.1.3",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.1.0",
"react-infinite-scroll-component": "^6.1.0",
"react-responsive-modal": "^6.4.2",
"react-tooltip": "^5.26.4",
"sharp": "^0.33.4",
"url-safe-base64": "^1.3.0",
"usehooks-ts": "^3.0.2"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.28.11",
"@tanstack/react-query-devtools": "^5.28.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"daisyui": "^4.11.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "3.4.3",
"typescript": "^5"
}
}