Skip to content

Commit

Permalink
Fix missing peer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bob0005 committed Jan 7, 2025
1 parent 8f3d443 commit 4f35e71
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 61 deletions.
9 changes: 2 additions & 7 deletions client/apps/balancing/package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
{
"name": "balancing",
"private": true,
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"dev": "vite",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {

"@tanstack/react-table": "^8.20.5"
},
"devDependencies": {
"@eslint/js": "^9.9.0",

"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",


"tailwindcss": "^3.4.1",
"typescript-eslint": "^8.0.1"
}
}
1 change: 0 additions & 1 deletion client/apps/game/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/lodash": "^4.14.202",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
Expand Down
2 changes: 2 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@radix-ui/react-tabs": "^1.1.0",
"@starknet-react/chains": "^3.1.0",
"@starknet-react/core": "^3.5.0",
"@tailwindcss/typography": "^0.5.13",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"framer-motion": "^11.0.24",
Expand All @@ -43,6 +44,7 @@
"react-dom": "^18.3.1",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.21.45",
"zod": "^3.23.8"
Expand Down
18 changes: 9 additions & 9 deletions client/sdk/packages/eternum/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
"name": "@bibliothecadao/eternum",
"version": "0.2.0",
"description": "Eternum SDK for Starknet & Dojo",
"license": "MIT",
"author": "Loaf",
"type": "module",
"scripts": {
"build": "tsup",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"gen:docs": "typedoc --plugin typedoc-plugin-markdown"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"author": "Loaf",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"gen:docs": "typedoc --plugin typedoc-plugin-markdown",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest"
},
"dependencies": {
"@dojoengine/core": "1.0.0-alpha.24",
"@scure/starknet": "^1.1.0",
Expand Down
10 changes: 5 additions & 5 deletions contracts/formula/battles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"name": "battles",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"simulate-battle": "node battle_time.js"
},
"dependencies": {
"@bibliothecadao/eternum": "workspace:^"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.10"
},
"type": "module"
}
}
12 changes: 6 additions & 6 deletions contracts/season_pass/scripts/deployment/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "scripts",
"version": "1.0.0",
"type": "module",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"deploy": "source .env && bun --env-file=.env ./deploy_dev",
"deploy::sepolia": "bun --env-file=.env.sepolia ./deploy_dev",
"deploy::prod": "bun --env-file=.env.production ./deploy_prod"
},
"author": "",
"license": "ISC"
"deploy::prod": "bun --env-file=.env.production ./deploy_prod",
"deploy::sepolia": "bun --env-file=.env.sepolia ./deploy_dev"
}
}
12 changes: 6 additions & 6 deletions contracts/season_resources/scripts/deployment/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "scripts",
"version": "1.0.0",
"type": "module",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"deploy": "source .env && bun --env-file=.env ./deploy && bun --env-file=.env ./config/index.ts",
"deploy::sepolia": "source .env.sepolia && bun --env-file=.env.sepolia ./deploy && bun --env-file=.env.sepolia ./config/index.ts",
"deploy::mainnet": "source .env.mainnet && bun --env-file=.env.mainnet ./deploy && bun --env-file=.env.mainnet ./config/index.ts"
},
"author": "",
"license": "ISC"
"deploy::mainnet": "source .env.mainnet && bun --env-file=.env.mainnet ./deploy && bun --env-file=.env.mainnet ./config/index.ts",
"deploy::sepolia": "source .env.sepolia && bun --env-file=.env.sepolia ./deploy && bun --env-file=.env.sepolia ./config/index.ts"
}
}
48 changes: 21 additions & 27 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4f35e71

Please sign in to comment.