stargaze-studio/package.json

106 lines
2.7 KiB
JSON
Raw Normal View History

2022-07-13 13:56:36 +00:00
{
"name": "stargaze-studio",
2024-01-17 10:16:25 +00:00
"version": "0.8.7",
2022-07-13 13:56:36 +00:00
"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",
2024-01-17 09:09:56 +00:00
"@cosmjs/cosmwasm-stargate": "0.32.2",
"@cosmjs/encoding": "0.32.2",
"@cosmjs/math": "0.32.2",
"@cosmjs/proto-signing": "0.32.2",
"@cosmjs/stargate": "0.32.2",
2024-01-15 11:55:16 +00:00
"cosmjs-types": "0.9.0",
"@cosmos-kit/keplr": "2.8.0",
"@cosmos-kit/leap": "2.8.0",
"@cosmos-kit/leap-metamask-cosmos-snap": "0.8.0",
"@cosmos-kit/react": "2.12.0",
"@interchain-ui/react": "1.23.11",
2024-04-02 09:59:43 +00:00
"crypto-js": "4.1.1",
"@types/crypto-js": "4.2.1",
2022-07-13 13:56:36 +00:00
"@fontsource/jetbrains-mono": "^4",
"@fontsource/roboto": "^4",
2024-04-02 09:59:43 +00:00
"merkletreejs": "0.3.11",
2023-10-16 10:12:34 +00:00
"@leapwallet/cosmos-snap-provider": "0.1.24",
"@pinata/sdk": "^1.1.26",
2022-07-13 13:56:36 +00:00
"@popperjs/core": "^2",
"@svgr/webpack": "^6",
"@tailwindcss/forms": "^0",
"@tailwindcss/line-clamp": "^0",
"@typeform/embed-react": "2.21.0",
2022-07-13 13:56:36 +00:00
"axios": "^0",
"chain-registry": "^1.20.0",
2022-07-13 13:56:36 +00:00
"clsx": "^1",
"compare-versions": "^4",
"daisyui": "^2.19.0",
"html-to-image": "1.11.11",
2023-12-31 18:47:30 +00:00
"@headlessui/react": "1.6.0",
"@headlessui/tailwindcss": "0.2.0",
"@heroicons/react": "2.0.18",
"jscrypto": "^1.0.3",
2022-07-13 13:56:36 +00:00
"match-sorter": "^6",
"next": "^12",
"next-seo": "^4",
"nft.storage": "^6.3.0",
"qrcode.react": "3.1.0",
2022-07-13 13:56:36 +00:00
"react": "^18",
"react-datetime-picker": "^3",
"react-dom": "^18",
"react-hook-form": "^7",
2022-12-13 19:21:05 +00:00
"react-hot-toast": "^2",
2022-07-13 13:56:36 +00:00
"react-icons": "^4",
"react-popper": "^2",
"react-query": "^3",
"react-tracked": "^1",
"scheduler": "^0",
"secp256k1": "^4.0.3",
2023-02-14 17:45:25 +00:00
"tailwindcss-opentype": "1.1.0",
"zustand": "^4"
2022-07-13 13:56:36 +00:00
},
"devDependencies": {
2024-01-17 09:09:56 +00:00
"@stargazezone/types": "0.9.0",
2022-07-13 13:56:36 +00:00
"@types/node": "^14",
"@types/react": "^18",
"@types/react-datetime-picker": "^3",
"@types/secp256k1": "^4.0.2",
2022-07-13 13:56:36 +00:00
"autoprefixer": "^10",
"husky": "^7",
"lint-staged": "^12",
2023-02-10 07:46:41 +00:00
"object-sizeof": "^1.6.0",
2022-07-13 13:56:36 +00:00
"postcss": "^8",
"tailwindcss": "^3",
2023-12-31 18:47:30 +00:00
"tailwind-merge": "1.14.0",
2022-07-13 13:56:36 +00:00
"typescript": "^4"
},
"eslintConfig": {
"extends": [
"@stargaze-studio/eslint-config"
2022-07-13 13:56:36 +00:00
],
"ignorePatterns": [
".next",
"node_modules",
"out",
"public"
],
"root": true
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"eslint --fix"
]
},
"prettier": "@stargaze-studio/prettier-config",
2022-07-13 13:56:36 +00:00
"private": true
2023-02-10 07:46:41 +00:00
}