-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
68 lines (68 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "web3modal",
"version": "3.0.0",
"private": true,
"type": "module",
"scripts": {
"build:clean": "turbo run build:clean",
"build": "turbo run build:clean; turbo run build",
"watch": "turbo run watch --concurrency=50 --continue",
"gallery": "turbo run dev:gallery",
"laboratory": "turbo run dev:laboratory",
"examples": "turbo run dev:example",
"build:gallery": "turbo run build:clean; turbo run build:gallery",
"build:laboratory": "turbo run build:clean; turbo run build:laboratory",
"build:examples": "turbo run build:clean; turbo run build:examples",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"danger": "danger ci",
"prettier": "prettier --check .",
"prettier:format": "prettier --write .",
"clean": "rm -rf `find . -type d -name node_modules -o -name dist -o -name .next -o -name out`; rm package-lock.json",
"new-version": "lerna version --no-git-tag-version --exact",
"pre-publish": "turbo lint typecheck prettier test; npm run new-version; npm install",
"publish:latest": "npm run build; lerna exec -- npm publish --no-private --access public --tag latest",
"publish:alpha": "npm run build; lerna exec -- npm publish --no-private --access public --tag alpha",
"publish:beta": "npm run build; lerna exec -- npm publish --no-private --access public --tag beta",
"publish:canary": "npm run build; lerna exec -- npm publish --no-private --access public --tag canary"
},
"workspaces": [
"packages/common",
"packages/ui",
"packages/core",
"packages/scaffold",
"packages/scaffold-utils",
"packages/scaffold-react",
"packages/scaffold-vue",
"packages/polyfills",
"packages/wallet",
"packages/siwe",
"packages/wagmi",
"packages/ethers",
"packages/ethers5",
"apps/*",
"examples/*"
],
"devDependencies": {
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"danger": "11.3.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-require-extensions": "0.1.3",
"lerna": "8.0.1",
"prettier": "3.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"turbo": "1.11.2",
"typescript": "5.3.3",
"viem": "1.20.3",
"vite": "5.0.10",
"vitest": "1.1.0",
"vue": "3.3.13",
"wagmi": "1.4.12"
}
}