-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
87 lines (87 loc) · 2.1 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
{
"name": "juno-tools",
"version": "1.4.2",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint --fix \"**/*.{js,cjs,mjs,jsx,ts,tsx}\" && tsc --noEmit --pretty",
"prepare": "husky install",
"start": "next start"
},
"dependencies": {
"@aws-sdk/client-s3": "^3",
"@cosmjs/cosmwasm-stargate": "^0",
"@cosmjs/crypto": "^0.28.11",
"@cosmjs/encoding": "^0",
"@cosmjs/ledger-amino": "^0.28.11",
"@cosmjs/math": "^0",
"@cosmjs/proto-signing": "^0",
"@cosmjs/stargate": "^0",
"@fontsource/jetbrains-mono": "^4",
"@fontsource/roboto": "^4",
"@headlessui/react": "^1",
"@keplr-wallet/cosmos": "^0.9.16",
"@ledgerhq/hw-transport-webusb": "^6.27.2",
"@popperjs/core": "^2",
"@svgr/webpack": "^6",
"@tailwindcss/forms": "^0",
"@tailwindcss/line-clamp": "^0",
"@terra-money/terra.js": "^3.1.3",
"@terra-money/wallet-provider": "^3.9.4",
"axios": "^0",
"clsx": "^1",
"compare-versions": "^4",
"match-sorter": "^6",
"next": "^12",
"next-seo": "^4",
"react": "^18",
"react-datetime-picker": "^3",
"react-dom": "^18",
"react-hook-form": "^7",
"react-hot-toast": "^2",
"react-icons": "^4",
"react-popper": "^2",
"react-query": "^3",
"react-tracked": "^1",
"scheduler": "^0",
"styled-components": "^5.3.3",
"zustand": "^3"
},
"devDependencies": {
"@types/node": "^14",
"@types/react": "^18",
"@types/react-datetime-picker": "^3",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10",
"husky": "^7",
"lint-staged": "^12",
"postcss": "^8",
"tailwindcss": "^3",
"typescript": "^4"
},
"eslintConfig": {
"extends": [
"@juno-tools/eslint-config"
],
"ignorePatterns": [
".next",
"node_modules",
"out",
"public"
],
"root": true
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"eslint --fix"
]
},
"prettier": "@juno-tools/prettier-config",
"private": true
}