forked from SO4-Markets/interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 948 Bytes
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
{
"name": "so4-market",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"typecheck": "turbo typecheck",
"test:e2e": "playwright test",
"contracts:gen:all": "bun run scripts/generate-bindings.ts",
"indexer:codegen": "bun run --cwd apps/s03-indexer codegen",
"indexer:build": "bun run --cwd apps/s03-indexer build",
"indexer:dev": "bun run --cwd apps/s03-indexer dev",
"indexer:start": "bun run --cwd apps/s03-indexer start",
"check:integration": "bash scripts/check-integration.sh"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.8.17",
"typescript": "5.9.3"
},
"packageManager": "bun@1.3.13",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*"
]
}