Skip to content

Commit

Permalink
🚧
Browse files Browse the repository at this point in the history
  • Loading branch information
coyotte508 committed Oct 22, 2024
1 parent 62294ab commit e4ca425
Show file tree
Hide file tree
Showing 11 changed files with 1,473 additions and 389 deletions.
2 changes: 1 addition & 1 deletion apps/web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Open http://localhost:8612 to view it in the browser.

### Environment

You can create a `.env` file with environement variables:
You can create a `.env` file with environment variables:

- VITE_backend : set to `"https://www.boardgamers.space"` to run against production backend
17 changes: 10 additions & 7 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"type": "module",
"scripts": {
"start": "node build/index.js",
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
Expand All @@ -26,13 +26,14 @@
"marked": "^3.0.2",
"nprogress": "^0.2.0",
"remove-markdown": "^0.3.0",
"svelte": "^3.44.1",
"svelte": "^5.0.5",
"sveltestrap": "^5.6.2",
"type-fest": "^2.1.0"
},
"devDependencies": {
"@sveltejs/adapter-node": "^1.0.0-next.58",
"@sveltejs/kit": "1.0.0-next.216",
"@sveltejs/adapter-node": "^5.2.8",
"@sveltejs/kit": "2.7.2",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/svelte": "^3.0.3",
"@types/cookie": "^0.4.1",
Expand Down Expand Up @@ -61,6 +62,8 @@
"svelte-preprocess": "^4.9.4",
"ts-jest": "^27.1.2",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
"typescript": "^4.4.3",
"vite": "^4.3.1",
"vitest": "^2.1.3"
}
}
Loading

0 comments on commit e4ca425

Please sign in to comment.