-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 4.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "Safe",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "tsc && yarn postinstall && vite build --watch",
"start:firefox": "web-ext run --source-dir ./dist/",
"watch": "tsc && vite build --watch",
"precheck": "tsc && yarn postinstall && NODE_OPTIONS=--max-old-space-size=8192",
"build": "yarn precheck vite build --mode development",
"build:chrome": "yarn build; cp src/utils/config/manifest_v3.json dist/manifest.json;",
"build:firefox": "yarn build; cp src/utils/config/manifest_v2.json dist/manifest.json; web-ext build --source-dir ./dist/ --artifacts-dir=release;",
"build:production": "yarn precheck vite build --mode production && mkdir -p dist-prod && cp -r dist/* dist-prod",
"build:release": "yarn build:production && yarn build:staging",
"build:staging": "yarn precheck vite build --mode staging && mkdir -p dist-staging && cp -r dist/* dist-staging",
"zip": "cd dist; zip -r ../release/release.zip *;",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"prettify": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,json}\" ",
"lint": "yarn prettify && yarn lint:fix ",
"postinstall": "mkdir -pv public && cp node_modules/@trustwallet/wallet-core/dist/lib/wallet-core.* public"
},
"dependencies": {
"@ethereumjs/util": "^8.0.0",
"@headlessui/react": "^1.6.5",
"@metamask/eth-sig-util": "^5.0.2",
"@metamask/metamask-eth-abis": "^3.0.0",
"@safe-global/account-abstraction-kit-poc": "^1.0.1",
"@safe-global/auth-kit": "^1.2.0",
"@safe-global/protocol-kit": "^1.2.0",
"@safe-global/relay-kit": "^1.2.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@trustwallet/wallet-core": "3.2.8",
"@types/debounce": "^1.2.1",
"@types/lodash": "^4.14.196",
"@types/node": "^18.0.0",
"@types/react-lazy-load-image-component": "^1.5.3",
"@web3auth/modal": "^6.1.7",
"@web3auth/openlogin-adapter": "^6.1.7",
"aes-js": "^3.1.2",
"agent-base": "^6.0.2",
"axios": "^1.4.0",
"bignumber.js": "^9.1.1",
"bip39": "^3.0.4",
"bs58": "^5.0.0",
"create-hash": "^1.2.0",
"crypto-js": "^4.1.1",
"debounce": "^1.2.1",
"eth-rpc-errors": "^4.0.3",
"ethereum-cryptography": "^1.1.2",
"ethereumjs-util": "^7.1.5",
"ethers": "5.7.2",
"events": "^3.3.0",
"flat": "^5.0.2",
"framer-motion": "^10.15.1",
"hdkey": "^2.0.1",
"koa-compose": "^4.1.0",
"lodash": "^4.17.21",
"lru-cache": "^6.0.0",
"moment": "^2.29.4",
"p-queue": "^7.3.4",
"query-string": "^7.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-lazy-load-image-component": "^1.6.0",
"react-router-dom": "^6.3.0",
"react-spring": "^9.4.5",
"react-typed": "^1.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"scrypt-js": "^3.0.1",
"secp256k1": "^5.0.0",
"tweetnacl": "^1.0.3",
"user-agent-data-types": "^0.3.0",
"web3": "^1.7.5"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@crxjs/vite-plugin": "^1.0.14",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/chrome": "^0.0.193",
"@types/crypto-js": "^4.1.1",
"@types/flat": "^5.0.2",
"@types/hdkey": "^2.0.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/webextension-polyfill": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/coverage-c8": "^0.25.1",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"browserify-zlib": "^0.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^20.0.2",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"qr-code-styling": "^1.6.0-rc.1",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.1.3",
"typescript": "^4.7.4",
"vite": "^3.1.0",
"vitest": "^0.24.2",
"web-ext": "^7.1.1",
"webextension-polyfill": "^0.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}