forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.26 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
{
"name": "web3modal",
"version": "3.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"watch": "turbo run watch --parallel",
"gallery": "turbo run dev:gallery --parallel",
"laboratory": "turbo run dev:laboratory --parallel",
"examples": "turbo run dev:example --parallel",
"build:gallery": "turbo run build:gallery",
"build:laboratory": "turbo run build:laboratory",
"build:examples": "turbo run build:examples",
"test": "turbo run test --parallel",
"typecheck": "turbo run typecheck --parallel",
"lint": "turbo run lint --parallel",
"danger": "danger ci",
"prettier": "prettier --check .",
"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 --parallel; npm run new-version; npm install; turbo run build;",
"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/ui",
"packages/core",
"packages/scaffold",
"packages/scaffold-react",
"packages/scaffold-vue",
"packages/polyfills",
"packages/utils",
"packages/siwe",
"packages/wagmi",
"packages/ethers5",
"apps/*",
"examples/*"
],
"devDependencies": {
"@types/react": "18.2.29",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"danger": "11.3.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-require-extensions": "0.1.3",
"ethers": "5.7.2",
"lerna": "7.4.1",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"turbo": "1.10.15",
"typescript": "5.2.2",
"viem": "1.16.6",
"vite": "4.5.0",
"vitest": "0.34.6",
"vue": "3.3.4",
"wagmi": "1.4.4"
}
}