-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.95 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
86
87
88
89
90
91
92
93
{
"name": "@nakama/source",
"version": "0.0.0",
"license": "GNU AGPLv3",
"scripts": {
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint --fix",
"reset": "nx reset",
"serve": "nx run-many -t serve",
"relay-bot:serve": "npx nx run relay-bot:serve:development",
"relay-bot:setup": "RUN_SETUP=true npx nx run relay-bot:serve:development",
"relay-bot:run": "RUN_BOT=true npx nx run relay-bot:serve:development"
},
"private": true,
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.11.4",
"@emotion/server": "11.11.0",
"@emotion/styled": "^11.11.5",
"@lit-protocol/auth-helpers": "^6.4.10",
"@lit-protocol/constants": "^6.4.10",
"@lit-protocol/contracts-sdk": "^6.4.10",
"@lit-protocol/encryption": "^6.4.10",
"@lit-protocol/lit-auth-client": "^6.4.10",
"@lit-protocol/lit-node-client": "^6.4.10",
"@lit-protocol/lit-node-client-nodejs": "^6.4.10",
"@lit-protocol/misc": "^6.4.10",
"@lit-protocol/pkp-ethers": "^6.4.10",
"@lit-protocol/types": "^6.4.7",
"@lit-protocol/uint8arrays": "^6.4.10",
"@lit-protocol/wrapped-keys": "^6.4.10",
"@mui/icons-material": "^5.16.6",
"@mui/material": "^5.16.6",
"@mui/material-nextjs": "^5.16.6",
"@noble/hashes": "^1.4.0",
"@simplewebauthn/browser": "^10.0.0",
"@supabase/supabase-js": "^2.45.3",
"apisauce": "^3.0.1",
"axios": "^1.7.3",
"big.js": "^6.2.1",
"ethers": "^5.7",
"isomorphic-ws": "^5.0.0",
"next": "^14.2.5",
"node-localstorage": "^3.0.5",
"nostr-tools": "^2.7.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-lottie-player": "^2.1.0",
"react-qr-code": "^2.0.15",
"tslib": "^2.3.0",
"wagmi": "^2.12.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.4",
"@nx/esbuild": "19.6.2",
"@nx/eslint": "^19.6.2",
"@nx/eslint-plugin": "^19.6.2",
"@nx/js": "^19.6.2",
"@nx/next": "^19.6.2",
"@nx/node": "^19.6.2",
"@nx/workspace": "^19.6.2",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.14",
"@swc/helpers": "~0.5.11",
"@swc/plugin-emotion": "^3.0.13",
"@testing-library/react": "^16.0.0",
"@types/big.js": "^6.2.2",
"@types/node": "^22.5.0",
"@types/node-localstorage": "^1.3.3",
"@types/react": "^18.3.4",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"esbuild": "^0.19.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest-environment-node": "^29.7.0",
"nx": "^19.6.2",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "~5.5.2"
},
"overrides": {
"axios": "$axios"
}
}