-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 3.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@mpc-sdk/multi-factor-accounts",
"version": "0.1.2",
"description": "Adds multi-factor accounts to MetaMask by sharding keys using threshold signatures",
"repository": {
"type": "git",
"url": "https://github.com/mpc-sdk/multi-factor-accounts"
},
"license": "MIT",
"files": [
"bundle/",
"images/",
"snap.manifest.json"
],
"workspaces": [
"sdk/bindings/pkg"
],
"scripts": {
"clean": "rm -rf dist bundle .parcel-cache",
"build": "yarn clean && yarn build:snap && yarn tailwind && webpack --config webpack.config.js --node-env production",
"build:snap": "mm-snap build",
"build:snap-dev": "NODE_ENV=development mm-snap build",
"types": "tsc --noEmit --project tsconfig.json",
"fmt": "prettier --write . --no-color",
"lint": "eslint app components forms lib pages",
"check": "yarn types && yarn lint && yarn fmt",
"start": "yarn clean && yarn build:snap-dev && yarn dev:assets && parcel app/index.html --port 7070",
"dev:assets": "mkdir -p dist && cp -r images snap.manifest.json bundle dist/",
"tailwind": "tailwindcss -i ./app/index.css -o ./dist/styles.css",
"publish": "yarn build:snap && npm publish"
},
"devDependencies": {
"@metamask/snaps-cli": "^5.0.0",
"@metamask/utils": "^8.3.0",
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"copy-webpack-plugin": "^12.0.2",
"dotenv": "^16.4.2",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.31.11",
"ganache": "^7.9.2",
"parcel": "^2.11.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"string-replace-loader": "^3.1.0",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "4.15.1"
},
"dependencies": {
"@ethersproject/address": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@hookform/resolvers": "^3.3.4",
"@metamask/detect-provider": "^2.0.0",
"@metamask/keyring-api": "^3.0.0",
"@metamask/providers": "^14.0.2",
"@metamask/snaps-sdk": "^2.0.0",
"@mpc-sdk/mpc-bindings": "workspace:^",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"comlink": "^4.3.1",
"date-fns": "^3.3.1",
"ethers": "^6.11.0",
"lucide-react": "^0.325.0",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-router-dom": "^6.22.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.0"
},
"packageManager": "[email protected]"
}