-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.72 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.72 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
{
"name": "builder-kit",
"version": "0.1.0",
"private": true,
"description": "Onchain starter kit for Shape with Next.js and Hardhat contracts.",
"author": "williamhzo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shape-network/builder-kit.git"
},
"bugs": {
"url": "https://github.com/shape-network/builder-kit/issues"
},
"homepage": "https://github.com/shape-network/builder-kit#readme",
"packageManager": "bun@1.3.6",
"engines": {
"node": ">=20.18.0",
"bun": ">=1.3.6"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun --filter=@builder-kit/web run dev",
"build": "bun --filter=@builder-kit/web run build",
"start": "bun --filter=@builder-kit/web run start",
"test": "bun --filter=@builder-kit/web run test && bun run contracts:test",
"contracts:compile": "bun --filter=@builder-kit/contract run compile",
"contracts:test": "bun --filter=@builder-kit/contract run test",
"contracts:deploy:shape-sepolia": "bun --filter=@builder-kit/contract run deploy:shape-sepolia",
"contracts:artifact": "bun --filter=@builder-kit/contract run generate:artifact",
"wagmi:generate": "bun --filter=@builder-kit/web run wagmi:generate",
"lint": "bun --filter=@builder-kit/web run lint",
"lint:fix": "bun --filter=@builder-kit/web run lint:fix",
"type-check": "bun --filter=@builder-kit/web run type-check",
"format": "bun --filter=@builder-kit/web run format",
"format:check": "bun --filter=@builder-kit/web run format:check",
"check": "bun run lint && bun run type-check && bun run test"
},
"devDependencies": {
"turbo": "2.8.4"
},
"overrides": {
"@types/minimatch": "5.1.2"
}
}