-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.14 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.14 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
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
94
95
96
{
"name": "zerounbound-ghostnet",
"version": "1.5.4",
"private": true,
"type": "module",
"scripts": {
"dev:current": "node scripts/ensureDevManifest.js && node scripts/startDev.js",
"set:ghostnet": "node scripts/setTarget.js ghostnet",
"set:mainnet": "node scripts/setTarget.js mainnet",
"dev:mainnet": "yarn set:mainnet && node scripts/ensureDevManifest.js && node scripts/startDev.js",
"dev": "yarn set:ghostnet && node scripts/ensureDevManifest.js && node scripts/startDev.js",
"build": "node scripts/generateManifest.js && node scripts/updatePkgName.js && next build",
"start": "next start -p 4000",
"bundle": "node scripts/generateBundles.js",
"lint": "eslint . --ext js,jsx,ts,tsx --max-warnings 0",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"ci:guard": "node scripts/ci/guard-compromised.js"
},
"dependencies": {
"@stablelib/ed25519": "1.0.3",
"@stablelib/nacl": "1.0.4",
"@stablelib/random": "1.0.2",
"@stablelib/utf8": "1.0.2",
"@stablelib/x25519-session": "1.0.4",
"@taquito/beacon-wallet": "^24.3.0",
"@taquito/local-forging": "^24.3.0",
"@taquito/michel-codec": "^24.3.0",
"@taquito/signer": "^24.3.0",
"@taquito/taquito": "^24.3.0",
"@taquito/tzip12": "^24.3.0",
"@taquito/tzip16": "^24.3.0",
"@walletconnect/core": "^2.20.2",
"@walletconnect/jsonrpc-ws-connection": "^1.0.16",
"@walletconnect/keyvaluestorage": "^1.1.1",
"clsx": "^1.2.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"jstz": "^2.1.1",
"jszip": "^3.10.1",
"next": "^15.3.5",
"pako": "^2.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "^2.0.10",
"styled-components": "^6.1.18",
"zod": "^3.25.7"
},
"devDependencies": {
"@babel/core": "7.22.0",
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^14.3.1",
"@types/babel__core": "^7",
"@types/node": "^20.11.30",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.12",
"@types/styled-components": "^5.1.26",
"babel-jest": "30.0.4",
"eslint": "8.57.0",
"eslint-config-next": "^15.3.5",
"eslint-plugin-styled-components-a11y": "^2.2.1",
"fast-glob": "^3.3.3",
"glob": "^11.0.2",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"prettier": "^3.5.3",
"typescript": "5.8.3",
"webpack": "5.91.0",
"workbox-webpack-plugin": "^7.3.0",
"yargs": "^17.7.2"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions"
],
"resolutions": {
"eslint": "8.57.0",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.12",
"internal-slot": "1.1.0",
"@stablelib/ed25519": "1.0.3",
"@stablelib/nacl": "1.0.4",
"@stablelib/random": "1.0.2",
"@stablelib/utf8": "1.0.2",
"@stablelib/x25519-session": "1.0.4",
"@stablelib/blake2b": "1.0.1",
"@stablelib/bytes": "1.0.1",
"styled-components": "^6.1.18"
},
"peerDependencies": {
"webpack": "^5.85.0"
},
"packageManager": "yarn@4.9.1"
}