This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.56 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
{
"name": "site",
"version": "0.1.0",
"private": true,
"license": "(MIT-0 OR Apache-2.0)",
"scripts": {
"build": "GATSBY_TELEMETRY_DISABLED=1 gatsby build",
"clean": "rimraf public",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
"start": "GATSBY_TELEMETRY_DISABLED=1 gatsby develop"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"@metamask/providers": "^9.0.0",
"@types/memoizee": "^0.4.11",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.0.1",
"memoizee": "^0.4.15",
"punycode": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-toastify": "^9.1.3",
"stream": "^0.0.2",
"stream-browserify": "^3.0.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@ckb-lumos/base": "^0.23.0",
"@ckb-lumos/codec": "^0.23.0",
"@ckb-lumos/lumos": "^0.23.0",
"@metamask/eslint-config": "^10.0.0",
"@metamask/eslint-config-jest": "^10.0.0",
"@metamask/eslint-config-nodejs": "^10.0.0",
"@metamask/eslint-config-typescript": "^10.0.0",
"@svgr/webpack": "^6.4.0",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"gatsby": "^4.24.4",
"gatsby-plugin-manifest": "^4.24.0",
"gatsby-plugin-styled-components": "^5.24.0",
"gatsby-plugin-svgr": "^3.0.0-beta.0",
"localforage": "^1.10.0",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.18",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=18.6.0"
}
}