This repository was archived by the owner on Apr 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.48 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.48 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
{
"name": "ms2fun-launchpad",
"version": "1.0.0",
"description": "MS2.fun Launchpad",
"main": "server.js",
"scripts": {
"start": "vite preview",
"dev": "vite",
"dev:mainnet": "VITE_FORCE_MODE=MAINNET_DEV vite",
"dev:coming-soon": "VITE_FORCE_MODE=COMING_SOON vite",
"build": "vite build",
"server:legacy": "nodemon server.js",
"setup:local": "bash scripts/local-chain/setup.sh",
"chain:start": "bash scripts/local-chain/start-chain.sh",
"chain:start:empty": "bash scripts/local-chain/start-chain.sh --scenario empty",
"chain:start:busy": "bash scripts/local-chain/start-chain.sh --scenario busy",
"chain:start:proposal": "bash scripts/local-chain/start-chain.sh --scenario proposal",
"chain:reset": "npm run chain:start",
"chain:stop": "lsof -ti:8545 | xargs kill -9 2>/dev/null && echo 'Anvil stopped' || echo 'No Anvil running on :8545'",
"chain:verify": "node scripts/verify-seed-data.mjs",
"contracts:build": "cd contracts && FOUNDRY_VIA_IR=false forge build",
"contracts:build:prod": "cd contracts && forge build",
"contracts:update": "git submodule update --remote contracts && npm run contracts:build",
"chain:validate": "node scripts/local-chain/validate-deploy.mjs"
},
"dependencies": {
"@monygroupcorp/micro-web3": "^1.4.2",
"@monygroupcorp/microact": "^0.2.4",
"ethers": "^5.7.2",
"express": "^4.17.1",
"web3": "^4.16.0"
},
"devDependencies": {
"nodemon": "^2.0.15",
"vite": "^7.3.1"
}
}