forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.91 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
{
"name": "web3modal",
"version": "2.0.0",
"private": true,
"type": "module",
"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",
"lab": "npm run dev --w=laboratory",
"lint": "eslint .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"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 new-version; npm install; npm run build;",
"publish:latest": "lerna exec -- npm publish --no-private --access public --tag latest",
"publish:canary": "lerna exec -- npm publish --no-private --access public --tag canary",
"clean": "rm -rf `find . -type d -name node_modules -o -name dist -o -name .next -o -name out`; rm package-lock.json"
},
"workspaces": [
"chains/ethereum",
"packages/core",
"packages/ui",
"packages/react",
"packages/html",
"laboratory"
],
"devDependencies": {
"@types/node": "20.4.5",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-commonjs": "25.0.3",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-json": "6.0.0",
"rollup-plugin-polyfill-node": "0.12.0",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"esbuild": "0.17.9",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"lerna": "7.1.4",
"prettier": "3.0.0",
"rollup": "3.26.3",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-minify-html-literals": "1.2.6",
"rollup-plugin-lit-css": "4.0.1",
"typescript": "5.1.6"
}
}