stargaze-studio/package.json
Serkan Reis 7740841168
Upload assets and metadata (#4)
* Initial preview & upload logic

* Refactor image & metadata selection & preview logic

* Refactor image & metadata selection & preview logic - 2

* Establish metadata-modal connection

* Metadata attribute manipulation

* Successful metadata attribute removal & update

* Successful metadata attribute addition & update

* Update existing attributes success

* Display image uri among metadata following the upload

* Fix: buttons being displayed without an image overlay

* Separate upload logic & incorporate useRefs

* Clean up: removed unused imports and structures

* Add radio buttons for upload service selection

* Remove package-lock.json (duplicate .lock files)

* Refactor upload logic & metadata modal

* Utilize serviceType enum in upload logic

* Utilize serviceType enum in upload logic - 2

* Implement user input for NFT.Storage & Pinata API keys

* Update use an existing URI text

* Remove upload_old.tsx

* Fix: reset main metadata fields on metadata modal refresh

* Fix: reset main metadata fields on metadata modal refresh - 2

* Make linter happy

* Make linter happy - 2

* Move upload file under collections

* Post-review update - 1

* Source Pinata endpoint URL from environment variables

* Replace regular file arrays with states

Co-authored-by: findolor <anakisci@gmail.com>
2022-07-28 16:38:43 +03:00

86 lines
2.0 KiB
JSON

{
"name": "stargaze-tools",
"version": "0.1.0",
"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/encoding": "^0",
"@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",
"@popperjs/core": "^2",
"@svgr/webpack": "^6",
"@tailwindcss/forms": "^0",
"@tailwindcss/line-clamp": "^0",
"axios": "^0",
"clsx": "^1",
"compare-versions": "^4",
"daisyui": "^2.19.0",
"match-sorter": "^6",
"next": "^12",
"next-seo": "^4",
"nft.storage": "^6.3.0",
"@pinata/sdk": "^1.1.26",
"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",
"react-collapsed": "^3",
"scheduler": "^0",
"zustand": "^3"
},
"devDependencies": {
"@stargazezone/types": "^0.7.2",
"@types/node": "^14",
"@types/react": "^18",
"@types/react-datetime-picker": "^3",
"autoprefixer": "^10",
"husky": "^7",
"lint-staged": "^12",
"postcss": "^8",
"tailwindcss": "^3",
"typescript": "^4"
},
"eslintConfig": {
"extends": [
"@stargaze-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": "@stargaze-tools/prettier-config",
"private": true
}