-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·50 lines (50 loc) · 1.66 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
{
"name": "js-sdk-monorepo",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"examples/*"
],
"nohoist": [
"**/viem",
"**/@reservoir0x/ethers-wallet-adapter",
"**/@reservoir0x/reservoir-sdk",
"**/@rainbow-me/rainbowkit",
"**/wagmi",
"**/@wagmi/core",
"**/@thirdweb-dev/sdk"
]
},
"scripts": {
"build": "turbo run build",
"build-package-ews": "turbo run build-package-ews",
"build-package-ews-connectors": "turbo run build-package-ews-connectors",
"build-package-checkout": "turbo run build-package-checkout",
"build-packages": "turbo run build-packages",
"dev": "turbo run dev --no-cache --continue --parallel",
"dev-tw": "turbo run dev-tw --no-cache --continue --parallel",
"dev-ews": "turbo run dev-ews --no-cache --continue --parallel",
"dev-ews-connectors": "turbo run dev-ews-connectors --no-cache --continue --parallel",
"dev-checkout": "turbo run dev-checkout --no-cache --continue --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean && find . -name \"node_modules\" -type d -exec rm -rf {} +",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"test": "turbo run test",
"prepare": "node ./scripts/postInstall"
},
"dependencies": {
"@changesets/cli": "^2.26.1",
"@manypkg/cli": "^0.20.0",
"eslint-config-paperxyz": "*",
"shelljs": "^0.8.5",
"tsup": "^6.7.0",
"turbo": "1.8.3"
},
"packageManager": "[email protected]"
}