-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.26 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.26 KB
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
{
"name": "@namada/extension",
"version": "0.9.0",
"description": "Namada Keychain",
"repository": "https://github.com/anoma/namada-interface/",
"author": "Heliax Dev <info@heliax.dev>",
"license": "MIT",
"private": true,
"scripts": {
"watch": "webpack-cli --watch",
"clean": "rimraf ./build",
"clean:chrome": "rimraf ./build/chrome",
"clean:firefox": "rimraf ./build/firefox",
"build": "yarn clean && yarn build:chrome && yarn build:firefox",
"build:chrome": "yarn clean:chrome && NODE_ENV=production TARGET=chrome webpack-cli && yarn run web-ext build --s ./build/chrome -a ./build/chrome",
"build:chrome:revision": "NAMADA_INTERFACE_REVISION=$(git rev-parse HEAD) yarn build:chrome",
"build:chrome:beta": "yarn clean:chrome && NODE_ENV=production BETA_RELEASE=true TARGET=chrome REVISION=$(git rev-parse HEAD) webpack-cli && yarn run web-ext build --s ./build/chrome -a ./build/chrome",
"build:firefox": "yarn clean:firefox && NODE_ENV=production TARGET=firefox webpack-cli && yarn run web-ext build --s ./build/firefox -a ./build/firefox",
"build:firefox:revision": "NAMADA_INTERFACE_REVISION=$(git rev-parse HEAD) yarn build:firefox",
"build:firefox:beta": "yarn clean:firefox && NODE_ENV=production BETA_RELEASE=true TARGET=firefox webpack-cli && yarn run web-ext build --s ./build/firefox -a ./build/firefox",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "yarn lint -- --fix",
"lint:ci": "yarn lint --max-warnings 0",
"start": "yarn start:chrome",
"start:chrome": "yarn clean:chrome && NODE_ENV=development TARGET=chrome NAMADA_INTERFACE_REVISION=$(git rev-parse HEAD) yarn watch",
"start:chrome:proxy": "NAMADA_INTERFACE_PROXY=true yarn start:chrome",
"start:firefox": "yarn clean:firefox && NODE_ENV=development TARGET=firefox NAMADA_INTERFACE_REVISION=$(git rev-parse HEAD) yarn watch",
"start:firefox:proxy": "NAMADA_INTERFACE_PROXY=true yarn start:firefox",
"test": "jest --coverage --runInBand",
"test:watch": "yarn jest --watchAll=true",
"test:ci": "jest"
},
"dependencies": {
"@cosmjs/encoding": "^0.29.0",
"@dao-xyz/borsh": "^5.1.5",
"@ledgerhq/hw-transport": "^6.31.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@namada/sdk": "0.24.0-beta.2",
"@zondax/ledger-namada": "^2.0.0",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"fp-ts": "^2.16.1",
"framer-motion": "^11.3.28",
"io-ts": "^2.2.21",
"isomorphic-dompurify": "^2.22.0",
"js-sha256": "^0.10.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-icons": "^4.12.0",
"react-router-dom": "^6.0.0",
"uuid": "^9.0.0",
"webextension-polyfill": "^0.10.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@namada/sdk-node": "0.24.0-beta.1",
"@svgr/webpack": "^6.3.1",
"@types/chrome": "^0.0.237",
"@types/firefox-webext-browser": "^94.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^8.3.4",
"@types/w3c-web-usb": "^1.0.10",
"@types/webextension-polyfill": "^0.10.6",
"@types/zxcvbn": "^4.4.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-indexeddb": "^4.0.1",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"jest-create-mock-instance": "^2.0.0",
"jest-environment-jsdom": "^29.7.0",
"leb128": "^0.0.5",
"merge-jsons-webpack-plugin": "^2.0.1",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"remove-files-webpack-plugin": "^1.5.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.2.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.5.4",
"web-ext": "^7.8.0",
"webpack": "^5.9.4",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^4.10.0",
"webpack-extension-reloader": "^1.1.4"
}
}