forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.72 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
{
"name": "web3modal",
"version": "2.0.0",
"private": true,
"scripts": {
"build": "npm run build --ws --if-present",
"dev": "npm run dev --w=@web3modal/core & npm run dev --w=@web3modal/ui & npm run dev --w=@web3modal/ethereum & npm run dev --w=@web3modal/react",
"dev:react": "npm run dev --w=react-example",
"dev:html": "npm run dev --w=html-example",
"lint": "eslint .",
"prettier": "prettier --check .",
"typecheck": "npm run typecheck --ws --if-present",
"new-version": "lerna version --no-git-tag-version --exact",
"pre-publish": "npm run lint; npm run typecheck; npm run prettier; npm run build; npm run new-version;",
"npm-publish:rc": "lerna exec -- npm publish --no-private --access public --tag rc",
"npm-publish:latest": "lerna exec -- npm publish --no-private --access public --tag latest",
"npm-publish:next": "lerna exec -- npm publish --no-private --access public --tag next",
"npm-publish:canary": "lerna exec -- npm publish --no-private --access public --tag canary"
},
"workspaces": [
"chains/ethereum",
"packages/core",
"packages/ui",
"packages/react",
"examples/react",
"examples/html"
],
"devDependencies": {
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-json": "5.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"rollup-plugin-polyfill-node": "0.10.2",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"esbuild": "0.15.12",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"lerna": "6.0.1",
"prettier": "2.7.1",
"rollup": "2.79.1",
"rollup-plugin-esbuild": "4.10.1",
"rollup-plugin-minify-html-literals": "1.2.6",
"typescript": "4.8.4"
}
}