feat: move to Astro and mostly reworked the Pokémon Shuffle game

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2023-08-15 18:37:26 +02:00
parent 4bb1f17467
commit c42311eaae
111 changed files with 11290 additions and 10821 deletions

View File

@@ -1,41 +1,36 @@
{
"name": "@avior/games",
"version": "1.1.0",
"name": "@fi3d/slicer-as-a-service",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"server": "next start",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --config jext.config.js"
"dev": "astro dev",
"start": "node ./dist/server/entry.mjs",
"build": "astro build",
"check": "npm run check:astro && npm run check:typescript",
"check:astro": "astro check",
"check:typescript": "tsc --noEmit",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest --coverage --run",
"test:e2e": "playwright test",
"install:test": "playwright install --with-deps"
},
"dependencies": {
"@dzeio/object-util": "^1.2.0",
"critters": "^0.0.10",
"easy-sitemap": "^1.0.0",
"next": "^11.0.0",
"next-compose-plugins": "^2.2.0",
"next-plausible": "^1.6.1",
"next-pre-css": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"stylus": "^0.54.7",
"stylus-loader": "^6.0.0",
"tslib": "^2.4.0",
"typescript": "^4.1.3",
"webpack": "^5.37.1"
"@astrojs/node": "^5",
"@astrojs/tailwind": "^4",
"@dzeio/listener": "^1.0.3",
"@dzeio/logger": "^3",
"@dzeio/object-util": "^1",
"@dzeio/url-manager": "^1",
"astro": "^2",
"easy-sitemap": "^1.1.2",
"lucide-astro": "^0.262.0",
"stylus": "^0.59.0",
"tailwindcss": "^3"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@types/favicons": "^6.2.0",
"@types/node": "^15.6.0",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.1.0",
"eslint-config-next": "^10.2.2",
"eslint-plugin-react": "^7.18.3",
"ts-node": "^9.1.1"
"@playwright/test": "^1.36.1",
"@types/node": "^20",
"@vitest/coverage-v8": "^0.33.0",
"vitest": "^0.33.0"
}
}