-
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.33 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.33 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": "fun-pump-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:web": "bun --cwd packages/web dev",
"dev:node": "bun --cwd packages/smart-contract node",
"dev:contract": "bun build:contract",
"build": "bun --cwd packages/web build",
"start": "bun --cwd packages/web start",
"lint": "bun --cwd packages/web lint",
"compile": "bun --cwd packages/smart-contract compile",
"test": "bun --cwd packages/smart-contract test",
"deploy": "bun --cwd packages/smart-contract deploy",
"deploy:local": "bun --cwd packages/smart-contract deploy:local",
"deploy:local:reset": "bun --cwd packages/smart-contract deploy:local:reset",
"build:contract": "bun --cwd packages/smart-contract build",
"verify": "bun --cwd packages/smart-contract verify",
"verify:local": "bun --cwd packages/smart-contract verify:local",
"typecheck": "bun workspaces run typecheck",
"clean": "rm -rf node_modules packages/*/node_modules .next packages/web/.next packages/smart-contract/.hardhat/cache",
"format": "bun prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@inquirer/prompts": "^7.5.3",
"@types/bun": "latest",
"typescript": "^5.8.3"
},
"type": "commonjs"
}