-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1012 Bytes
/
package.json
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": "drift",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"cli": "yarn workspace @delvtech/drift-cli dev",
"build:packages": "turbo build --filter=./packages/*",
"build": "turbo build",
"dev": "turbo dev",
"format": "biome format --write",
"lint": "biome lint --diagnostic-level error .",
"lint:fix": "yarn lint --fix",
"lint:fix:unsafe": "yarn lint:fix --unsafe",
"release": "turbo build && changeset publish",
"test": "turbo test",
"typecheck": "turbo typecheck",
"reset-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && yarn cache clean && yarn"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@changesets/cli": "^2.27.1",
"@repo/typescript-config": "*",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"resolutions": {
"typescript": "^5.7.2"
},
"packageManager": "yarn@1.22.21",
"workspaces": ["apps/*", "contracts", "packages/*"]
}