-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·106 lines (106 loc) · 3.46 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
{
"name": "kuma-wallet",
"displayName": "Kuma Wallet",
"version": "0.0.1",
"description": "Kuma a cross-chain wallet that offers seamless management and transfer of assets between EVM and WASM chains.",
"author": "Blockcoders Engineering <hello@blockcoders.io>",
"license": "MIT",
"readmeFilename": "README.md",
"type": "module",
"engineStrict": false,
"engines": {
"node": "^16.x || >=18.x"
},
"scripts": {
"build:chrome": "BROWSER_TARGET=CHROME vite build",
"build:firefox": "BROWSER_TARGET=FIREFOX vite build",
"build": "NODE_ENV=production tsc --noEmit && npm run build:chrome && npm run build:firefox",
"dev": "NODE_ENV=develop BROWSER_TARGET=CHROME nodemon",
"dev:firefox": "NODE_ENV=develop BROWSER_TARGET=FIREFOX nodemon",
"test": "vitest --reporter=verbose",
"test:cov": "vitest --reporter=verbose run --coverage",
"lint": "eslint \"{src,apps,libs}/**/*.ts\" --fix",
"lint:ci": "eslint \"{src,apps,libs}/**/*.ts\""
},
"keywords": [],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/blockcoders/kuma-wallet.git"
},
"homepage": "https://github.com/blockcoders/kuma-wallet/blob/main/README.md",
"bugs": "https://github.com/blockcoders/kuma-wallet/issues",
"dependencies": {
"@headlessui/react": "^1.7.13",
"@hookform/resolvers": "^2.9.11",
"@metamask/browser-passworder": "^4.0.2",
"@polkadot/api": "^10.3.2",
"@polkadot/api-contract": "^10.3.2",
"@polkadot/ui-keyring": "^3.1.4",
"@polkadot/util": "^11.1.3",
"@polkadot/util-crypto": "^11.1.3",
"ethers": "^5.7.2",
"i18next": "^22.4.11",
"i18next-browser-languagedetector": "^7.0.1",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-i18next": "^12.2.0",
"react-icons": "^4.8.0",
"react-number-format": "^5.1.4",
"react-qr-code": "^2.0.11",
"react-router-dom": "^6.8.2",
"react-toastify": "^9.1.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@polkadot/types-codec": "^10.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/chrome": "^0.0.220",
"@types/node": "^18.14.6",
"@types/randomcolor": "^0.5.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"autoprefixer": "^10.4.13",
"esbuild": "0.16.17",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.0",
"jsdom": "^21.1.0",
"nodemon": "^2.0.21",
"postcss": "^8.4.21",
"rollup-plugin-polyfill-node": "^0.12.0",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"overrides": {
"@esbuild-plugins/node-globals-polyfill": {
"esbuild": "$esbuild"
},
"@esbuild-plugins/node-modules-polyfill": {
"esbuild": "$esbuild"
},
"vite": {
"esbuild": "$esbuild"
}
}
}