forked from eckoDAO-org/ecko-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.79 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
125
{
"name": "ecko-wallet",
"version": "2.19.1",
"private": true,
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.16.0",
"@babel/runtime": "^7.16.0",
"@bumaga/tabs": "^0.2.0",
"@craco/craco": "^6.3.0",
"@kadena/cryptography-utils": "^0.1.4",
"@ledgerhq/hw-transport-webhid": "^6.27.19",
"@ledgerhq/logs": "^6.10.1",
"@reduxjs/toolkit": "^1.6.2",
"@tanstack/react-query": "^4.36.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.195",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"@walletconnect/core": "^2.5.2",
"@walletconnect/web3wallet": "^1.5.0",
"apexcharts": "^3.44.0",
"bcryptjs": "^2.4.3",
"bignumber.js": "^9.0.1",
"bip39": "^3.0.4",
"cardano-crypto.js": "https://github.com/kadena-io/cardano-crypto.js.git#jam@chainweaver-keygen",
"copyfiles": "^2.4.1",
"crypto-js": "^4.1.1",
"eslint-import-resolver-typescript": "^2.5.0",
"hw-app-kda": "git+https://github.com/obsidiansystems/hw-app-kda",
"jspdf": "^2.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-sass": "4.14.1",
"otpauth": "^9.1.1",
"pact-lang-api": "^4.2.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-apexcharts": "^1.4.1",
"react-dom": "^17.0.2",
"react-hook-form": "^7.17.1",
"react-jazzicon": "^1.0.4",
"react-json-view": "^1.21.3",
"react-loading": "^2.0.3",
"react-qr-code": "^2.0.11",
"react-qr-reader": "^2.2.1",
"react-redux": "^7.2.5",
"react-responsive-modal": "^6.1.0",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-select": "^5.1.0",
"react-toastify": "^8.0.3",
"reactjs-popup": "^2.0.5",
"recharts": "^2.12.7",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"regenerator-runtime": "^0.13.9",
"remote-redux-devtools": "^0.5.16",
"styled-components": "^5.3.1",
"tweetnacl": "^1.0.3",
"typescript": "^4.4.3",
"web-vitals": "^1.0.1",
"webpack": "^4.44.2"
},
"scripts": {
"start": "copyfiles -u 1 \"public/**/*\" dist && craco start",
"build": "craco build && parcel build public/app/* -d build/app --no-source-maps --no-minify",
"parcel:build": "parcel build public/app/* -d build/app --no-source-maps --no-minify",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint --ext js,jsx,ts,tsx ./src",
"lint:fix": "eslint --ext js,jsx,ts,tsx ./src --fix",
"pretty": "prettier --write \"./src/**/*.{tsx,js,jsx,json}\"",
"tsc": "tsc --noEmit"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"styled-components": "^5"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^4.38.0",
"@types/bcrypt": "^5.0.0",
"@types/chrome": "0.0.221",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.5.1"
},
"targets": {
"default": {
"distDir": "./output"
}
}
}