forked from sushi-labs/sushiswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
53
54
{
"name": "sushi",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "dotenv -- turbo run build",
"changeset": "changeset",
"changeset:release": "changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"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",
"preinstall": "npx -y only-allow pnpm",
"lint": "biome check .",
"sort": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'config/*/package.json' 'jobs/*/package.json' 'packages/*/package.json' 'protocols/*/package.json'",
"sort-check": "sort-package-json 'package.json' 'apis/*/package.json' 'apps/*/package.json' 'config/*/package.json' 'jobs/*/package.json' 'packages/*/package.json' 'protocols/*/package.json' --check",
"test": "dotenv -- turbo run test --parallel",
"test-evm-app": "dotenv -- turbo run test --filter=evm"
},
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@types/jest": "29.5.5",
"@types/node": "18",
"dotenv-cli": "6.0.0",
"eslint": "8.43.0",
"jest": "29.7.0",
"sort-package-json": "2.6.0",
"ts-jest": "29.1.1",
"turbo": "1.10.15"
},
"packageManager": "pnpm@8.9.2",
"engines": {
"node": ">=20.x",
"pnpm": "8.9.2"
},
"pnpm": {
"overrides": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"graphql": "16.6.0",
"typescript": "5.2.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6"
},
"patchedDependencies": {
"@viem/anvil@0.0.6": "patches/@viem__anvil@0.0.6.patch"
}
}
}