-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.49 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.49 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
{
"name": "se-2",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"account": "bun run --filter @se-2/foundry account",
"account:generate": "bun run --filter @se-2/foundry account:generate",
"account:import": "bun run --filter @se-2/foundry account:import",
"account:reveal-pk": "bun run --filter @se-2/foundry account:reveal-pk",
"chain": "bun run --filter @se-2/foundry chain",
"compile": "bun run --filter @se-2/foundry compile",
"deploy": "bun run --filter @se-2/foundry deploy",
"deploy:local": "bun run --filter @se-2/foundry deploy:local",
"deploy:base": "bun run --filter @se-2/foundry deploy:base",
"register:local": "bun run --filter @se-2/foundry register:local",
"register:base": "bun run --filter @se-2/foundry register:base",
"deploy:payments:local": "bun run --filter @se-2/foundry deploy:payments:local",
"deploy:payments:base": "bun run --filter @se-2/foundry deploy:payments:base",
"test:credittoken": "bun run --filter @se-2/foundry test:credittoken",
"flatten": "bun run --filter @se-2/foundry flatten",
"fork": "bun run --filter @se-2/foundry fork",
"format": "bun run next:format && bun run foundry:format",
"foundry:account": "bun run --filter @se-2/foundry account",
"foundry:account-import": "bun run --filter @se-2/foundry account:import",
"foundry:chain": "bun run --filter @se-2/foundry chain",
"foundry:clean": "bun run --filter @se-2/foundry clean",
"foundry:compile": "bun run --filter @se-2/foundry compile",
"foundry:deploy": "bun run --filter @se-2/foundry deploy",
"foundry:deploy-verify": "bun run --filter @se-2/foundry deploy:verify",
"foundry:flatten": "bun run --filter @se-2/foundry flatten",
"foundry:fork": "bun run --filter @se-2/foundry fork",
"foundry:format": "bun run --filter @se-2/foundry format",
"foundry:generate": "bun run --filter @se-2/foundry account:generate",
"foundry:lint": "bun run --filter @se-2/foundry lint",
"foundry:test": "bun run --filter @se-2/foundry test",
"foundry:verify": "bun run --filter @se-2/foundry verify",
"generate": "bun run --filter @se-2/foundry account:generate",
"prepare": "husky",
"ipfs": "bun run --filter @se-2/nextjs ipfs",
"lint": "bun run next:lint && bun run foundry:lint",
"next:build": "bun run --filter @se-2/nextjs build",
"next:check-types": "bun run --filter @se-2/nextjs check-types",
"next:format": "bun run --filter @se-2/nextjs format",
"next:lint": "bun run --filter @se-2/nextjs lint",
"next:serve": "bun run --filter @se-2/nextjs serve",
"precommit": "bunx --bun lint-staged",
"start": "bun run --filter @se-2/nextjs dev",
"test": "bun run --filter @se-2/foundry test",
"test:registry": "bun run --filter @se-2/foundry test:registry",
"test:payments": "bun run --filter @se-2/foundry test:payments",
"vercel": "bun run --filter @se-2/nextjs vercel",
"vercel:login": "bun run --filter @se-2/nextjs vercel:login",
"vercel:yolo": "bun run --filter @se-2/nextjs vercel:yolo",
"verify": "bun run --filter @se-2/foundry verify"
},
"devDependencies": {
"husky": "~9.1.6",
"lint-staged": "~13.2.2",
"shadcn": "latest"
},
"packageManager": "bun@1.3.8",
"engines": {
"bun": ">=1.3.8"
},
"dependencies": {
"@supabase/supabase-js": "^2.86.0",
"framer-motion": "^12.23.25"
},
"overrides": {
"axios": "1.14.0"
},
"resolutions": {
"axios": "1.14.0"
}
}