-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 4.21 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
{
"name": "5ire-wallet-extension",
"version": "0.3.2",
"private": true,
"dependencies": {
"@craco/craco": "^7.1.0",
"@ethereumjs/common": "^3.1.2",
"@ethereumjs/tx": "^4.1.2",
"@lottiefiles/react-lottie-player": "^3.5.0",
"@metamask/browser-passworder": "^4.1.0",
"@metamask/eth-hd-keyring": "^6.0.0",
"@metamask/eth-simple-keyring": "^5.0.0",
"@metamask/safe-event-emitter": "^3.0.0",
"@polkadot/api": "^10.7.3",
"@polkadot/keyring": "^12.2.1",
"@polkadot/util": "^12.2.1",
"@polkadot/util-crypto": "^12.2.1",
"@polkadot/wasm-crypto": "^7.2.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"antd": "^5.5.2",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"big-number": "^2.0.0",
"bignumber.js": "^9.1.1",
"browser-event-emitter": "^1.0.2",
"buffer": "^6.0.3",
"craco": "^0.0.3",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"ethers": "^6.4.0",
"extension-port-stream": "^2.0.1",
"json-rpc-engine": "^6.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-qr-code": "^2.0.11",
"react-router-dom": "^6.11.2",
"react-scripts": "5.0.1",
"readable-stream": "^4.4.0",
"sass": "^1.79.1",
"sass-loader": "^16.0.1",
"stream-browserify": "^3.0.0",
"uuid": "^9.0.0",
"web-vitals": "^3.3.2",
"web3": "^1.10.0",
"webextension-polyfill": "^0.10.0",
"webpack-extension-reloader": "^1.1.4"
},
"scripts": {
"watch": "node ./scripts/watch",
"start": "react-scripts start",
"reactbuild": "reatc-script build",
"build": "yarn fix && INLINE_RUNTIME_CHUNK=true BUILD_TYPE=CHROME MINI=0 GENERATE_SOURCEMAP=true REACT_APP_ENV=development craco build",
"build:chrome-qa": "yarn fix && REACT_APP_ENVIRONMENT=qa INLINE_RUNTIME_CHUNK=false BUILD_TYPE=CHROME MINI=1 GENERATE_SOURCEMAP=false craco build",
"build:chrome-prod": "yarn fix && REACT_APP_ENVIRONMENT=prod INLINE_RUNTIME_CHUNK=false BUILD_TYPE=CHROME MINI=1 GENERATE_SOURCEMAP=false craco build",
"build:dev-firefox": "yarn fix && INLINE_RUNTIME_CHUNK=false MINI=0 BUILD_TYPE=FIREFOX GENERATE_SOURCEMAP=false craco build",
"build:firefox-qa": "yarn fix && REACT_APP_ENVIRONMENT=qa NLINE_RUNTIME_CHUNK=true BUILD_TYPE=FIREFOX MINI=1 GENERATE_SOURCEMAP=false craco build",
"build:firefox-prod": "yarn fix && REACT_APP_ENVIRONMENT=prod NLINE_RUNTIME_CHUNK=true BUILD_TYPE=FIREFOX MINI=1 GENERATE_SOURCEMAP=false craco build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint \"src/**/*.{js,jsx}\" --fix",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"fix": "yarn run format && yarn run lint:fix",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.11.0",
"husky": "^8.0.3",
"json-loader": "^0.5.7",
"lint-staged": "^13.2.2",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"vm-browserify": "^1.1.2",
"webpack": "^5.84.1"
},
"lint-staged": {
"*": "yarn fix"
}
}