-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.23 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
{
"name": "onerwa-marketplace",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup": "node setup.js",
"compile": "npx hardhat compile --config hardhat.config.js",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:phase2": "node tests/run-all-tests.js",
"test:hardhat": "hardhat test",
"deploy:localhost": "hardhat run scripts/deploy.ts --network localhost",
"deploy:onechain-testnet": "hardhat run scripts/deploy.ts --network onechain_testnet",
"deploy:onechain-mainnet": "hardhat run scripts/deploy.ts --network onechain_mainnet",
"deploy:onechain-simple": "node deploy-onechain.js",
"deploy:sui-testnet": "ts-node scripts/deploy-move.ts",
"deploy:onechain": "node scripts/deploy-onechain.js",
"fund-wallet": "node fund-wallet.js",
"update-addresses": "node update-addresses.js",
"verify:onechain-testnet": "hardhat verify --network onechain_testnet",
"verify:onechain-mainnet": "hardhat verify --network onechain_mainnet",
"proofpack": "node scripts/generate-proofpack.js"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@coinbase-sample/prime-sdk-ts": "^0.6.3",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@harmony-js/core": "^0.1.57",
"@mysten/dapp-kit": "^0.14.0",
"@mysten/sui": "^1.0.0",
"@oneid-xyz/inspect": "^1.1.1",
"@openzeppelin/contracts": "^5.4.0",
"@reduxjs/toolkit": "^2.8.2",
"@tanstack/react-query": "^5.44.0",
"@types/better-sqlite3": "^7.6.13",
"@wallet-standard/base": "^1.1.0",
"@wallet-standard/features": "^1.1.0",
"@wallet-standard/wallet": "^1.1.0",
"better-sqlite3": "^12.4.1",
"blo": "^1.2.0",
"framer-motion": "^11.2.10",
"next": "14.2.4",
"pino-pretty": "^13.1.1",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-redux": "^9.2.0",
"scrypt-js": "^3.0.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.0",
"@nomicfoundation/hardhat-network-helpers": "^3.0.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.6.1",
"chai": "^5.2.1",
"dotenv": "^16.4.5",
"ethers": "^5.7.0",
"hardhat": "^2.26.3",
"hardhat-gas-reporter": "^2.3.0",
"jsdom": "^23.2.0",
"postcss": "^8",
"solidity-coverage": "^0.8.16",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5",
"vitest": "^1.6.1"
}
}