-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
package.json
52 lines (52 loc) · 2.03 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "sushi",
"private": true,
"scripts": {
"build": "dotenv -- turbo run build",
"check": "turbo run check --no-cache",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "dotenv -- turbo run dev --no-cache --parallel --continue",
"disable-remote-caching": "turbo unlink && rm -rf ./node_modules/.cache/turbo",
"enable-remote-caching": "turbo link",
"format": "pnpm sort && biome format . --write",
"generate": "dotenv -- turbo run generate --no-cache --parallel --continue",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"sort": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'config/*/package.json' 'packages/*/package.json'",
"sort-check": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'config/*/package.json' 'packages/*/package.json' --check",
"test": "dotenv -- turbo run test --parallel",
"test-web-app": "dotenv -- turbo run test --filter=web",
"web": "pnpm exec turbo run dev --filter web"
},
"devDependencies": {
"@biomejs/biome": "1.5.2",
"@types/node": "20",
"dotenv-cli": "6.0.0",
"eslint": "8.43.0",
"eslint-config-turbo": "2.0.5",
"just-pnpm": "1.0.2",
"sort-package-json": "2.6.0",
"tsx": "4.19.0",
"turbo": "2.0.5"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=20.x",
"pnpm": "9.4.0"
},
"pnpm": {
"overrides": {
"graphql": "16.6.0",
"typescript": "5.5.4",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6"
},
"patchedDependencies": {
"@aptos-labs/aptos-client@0.1.0": "patches/@aptos-labs__aptos-client@0.1.0.patch",
"@msafe/aptos-wallet-adapter@1.1.3": "patches/@msafe__aptos-wallet-adapter@1.1.3.patch",
"@walletconnect/logger@2.1.2": "patches/@walletconnect__logger@2.1.2.patch",
"swarm-js@0.1.42": "patches/swarm-js@0.1.42.patch",
"@walletconnect/jsonrpc-http-connection@1.0.8": "patches/@walletconnect__jsonrpc-http-connection@1.0.8.patch"
}
}
}