-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
64
65
66
67
68
69
70
71
72
{
"name": "murmur-dapp",
"version": "0.1.0",
"description": "A web UI to interact with Murmur",
"license": "Apache-2.0",
"repository": "https://github.com/ideal-lab5/murmur-dapp",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install; fi"
},
"dependencies": {
"@headlessui/react": "^2.0.4",
"@helia/dag-cbor": "^3.0.6",
"@helia/dag-json": "^3.0.6",
"@heroicons/react": "^2.1.3",
"@ideallabs/etf.js": "0.1.11-dev",
"@ideallabs/murmur.js": "^0.1.0",
"@libp2p/bootstrap": "^11.0.8",
"@libp2p/circuit-relay-v2": "^2.1.5",
"@libp2p/identify": "^3.0.8",
"@libp2p/webrtc": "^5.0.13",
"@libp2p/websockets": "^9.0.8",
"@libp2p/webtransport": "^5.0.13",
"@polkadot/api": "^13.2.1",
"@polkadot/extension-dapp": "^0.40",
"@polkadot/types": "^13.2.1",
"@polkadot/util": "^13.0.2",
"@polkadot/util-crypto": "^13.0.2",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"framer-motion": "^11.2.6",
"helia": "^4.2.6",
"libp2p": "^2.0.2",
"multiformats": "^13.3.0",
"next": "^14.2.5",
"react": "^18",
"react-dom": "^18",
"reflect-metadata": "^0.2.2",
"sha3": "^2.1.4",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
}
}