-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.75 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "node-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://calimero-network.github.io/admin-dashboard/",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext .ts,.tsx src --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix src",
"preview": "vite preview",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d build",
"prettier": "exec prettier . --write",
"prettier:check": "exec prettier . --check"
},
"dependencies": {
"@dfinity/identity": "^2.0.0",
"@floating-ui/react-native": "^0.10.4",
"@heroicons/react": "^2.1.3",
"@libp2p/crypto": "^4.1.0",
"@libp2p/interface": "^1.3.0",
"@metamask/sdk-react-ui": "^0.20.4",
"@near-wallet-selector/account-export": "^8.9.7",
"@near-wallet-selector/core": "^8.9.5",
"@near-wallet-selector/here-wallet": "^8.9.5",
"@near-wallet-selector/meteor-wallet": "^8.9.5",
"@near-wallet-selector/modal-ui": "^8.9.7",
"@near-wallet-selector/my-near-wallet": "^8.9.5",
"@near-wallet-selector/near-wallet": "^8.9.3",
"@near-wallet-selector/nightly": "^8.9.5",
"@near-wallet-selector/nightly-connect": "^8.7.0",
"@near-wallet-selector/sender": "^8.9.5",
"@near-wallet-selector/wallet-connect": "^8.9.5",
"@types/node": "^18.7.14",
"@types/prop-types": "^15.7.12",
"axios": "^1.7.4",
"bootstrap": "^5.3.3",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"get-starknet-core": "^3.3.2",
"near-api-js": "^3.0.4",
"prop-types": "^15.8.1",
"react": "^18.3.0",
"react-bootstrap": "^2.10.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.0",
"react-router-dom": "^6.22.3",
"react-tooltip": "^5.26.3",
"starknet": "^6.11.0",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.2.79",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.25",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^7.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"prettier": "3.3.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"vite": "^5.4.6",
"vite-plugin-node-polyfills": "^0.21.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}