-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.34 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
{
"name": "keepkey-template",
"version": "0.1.0",
"private": true,
"author": "highlander",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:turbo": "npx turbo build",
"serve": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix && yarn format",
"lint:turbo": "npx turbo lint",
"type-check": "tsc --noEmit",
"type-check:turbo": "npx turbo type-check",
"format": "prettier --write src",
"up": "yarn upgrade-interactive",
"up-latest": "yarn up --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.14",
"@chakra-ui/react": "^2.4.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/plus-jakarta-sans": "^4.5.10",
"@keepkey/hdwallet-keepkey-rest": "1.40.12",
"@keepkey/keepkey-sdk": "latest",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-typescript": "^10.0.1",
"@shapeshiftoss/hdwallet-core": "^1.42.0",
"@shapeshiftoss/hdwallet-keepkey-webusb": "^1.42.0",
"@tanstack/react-table": "^8.7.4",
"@types/react-alert": "^7.0.2",
"@web3-onboard/injected-wallets": "latest",
"@web3-onboard/react": "^2.5.1",
"@web3-onboard/walletconnect": "^2.2.2",
"chakra-react-select": "^4.4.3",
"framer-motion": "^7.7.2",
"hexo": "6.0.0",
"react": "^18.2.0",
"react-alert": "^7.0.3",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.4.5",
"react-syntax-highlighter": "^15.5.0",
"rollup-plugin-node-polyfills": "^0.2.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@types/node": "^18.11.14",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-helmet": "^6.1.6",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-react": "^3.0.0",
"commitlint": "^17.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-sznm": "^1.0.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"standard-version": "^9.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.2"
}
}