forked from vitsalis/simple-staking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"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"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@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.1.4",
"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",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "3.4.3",
"typescript": "^5"
}
}