forked from NearDeFi/bos-gateway-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.65 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
{
"name": "near-discovery",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": ">=0.39.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build-tauri": "pnpm tauri build --verbose",
"dev-tauri": "pnpm tauri dev"
},
"dependencies": {
"@braintree/sanitize-url": "6.0.0",
"@keypom/selector": "^1.2.3",
"@monaco-editor/react": "^4.4.6",
"@near-js/biometric-ed25519": "0.1.0",
"@near-wallet-selector/core": "8.1.1",
"@near-wallet-selector/here-wallet": "8.1.1",
"@near-wallet-selector/meteor-wallet": "8.1.1",
"@near-wallet-selector/modal-ui": "8.1.1",
"@near-wallet-selector/my-near-wallet": "8.1.1",
"@near-wallet-selector/near-wallet": "8.1.1",
"@near-wallet-selector/neth": "8.1.1",
"@near-wallet-selector/nightly": "8.1.1",
"@near-wallet-selector/sender": "8.1.1",
"@near-wallet-selector/wallet-utils": "8.1.1",
"@near-wallet-selector/welldone-wallet": "8.1.1",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-toast": "^1.1.3",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/injected-wallets": "^2.10.7",
"@web3-onboard/ledger": "^2.5.2",
"@web3-onboard/react": "^2.8.13",
"@web3-onboard/walletconnect": "^2.4.7",
"analytics-node": "^6.2.0",
"big.js": "^6.1.1",
"bn.js": "^5.1.1",
"bootstrap": "^5.2.1",
"bootstrap-icons": "^1.9.0",
"classnames": "^2.3.2",
"eslint": "8.39.0",
"eslint-config-next": "13.3.4",
"firebase": "^9.19.1",
"iframe-resizer-react": "^1.1.0",
"keypom-js": "^1.4.9",
"local-storage": "^2.0.0",
"lodash": "^4.17.21",
"near-api-js": "2.1.3",
"near-fastauth-wallet": "^0.0.8",
"near-social-vm": "github:NearSocial/VM#2.4.1",
"next": "13.3.4",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-bootstrap": "^2.5.0",
"react-bootstrap-typeahead": "^6.1.2",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-singleton-hook": "^3.1.1",
"styled-components": "^5.3.6",
"typescript": "5.0.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.1",
"@types/analytics-node": "^3.1.11",
"@types/big.js": "^6.1.6",
"@types/lodash": "^4.14.194",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0"
}
}