-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 976 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 976 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
{
"name": "sequence-core",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build:all": "turbo build",
"build:packages": "turbo build --filter=\"./packages/**/*\"",
"build": "pnpm build:packages",
"dev": "turbo dev",
"test": "turbo test --concurrency=1",
"lint": "turbo lint",
"format": "prettier --list-different --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo typecheck",
"postinstall": "lefthook install",
"dev:server": "node packages/wallet/primitives-cli/dist/index.js server",
"reinstall": "rimraf -g ./**/node_modules && pnpm install",
"test:anvil": "anvil --fork-url https://nodes.sequence.app/arbitrum",
"clean": "turbo clean"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"lefthook": "^1.11.13",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"turbo": "^2.5.4",
"typescript": "5.8.3"
},
"packageManager": "pnpm@10.18.3",
"engines": {
"node": ">=18"
}
}