-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .eslintignore 13 additions, 0 deletions.eslintignore
- .eslintrc.cjs 20 additions, 0 deletions.eslintrc.cjs
- .gitignore 10 additions, 0 deletions.gitignore
- .npmrc 1 addition, 0 deletions.npmrc
- .prettierignore 13 additions, 0 deletions.prettierignore
- .prettierrc 9 additions, 0 deletions.prettierrc
- README.md 38 additions, 0 deletionsREADME.md
- package.json 37 additions, 0 deletionspackage.json
- playwright.config.ts 10 additions, 0 deletionsplaywright.config.ts
- pnpm-lock.yaml 0 additions, 0 deletionspnpm-lock.yaml
- src/app.d.ts 9 additions, 0 deletionssrc/app.d.ts
- src/app.html 13 additions, 0 deletionssrc/app.html
- src/routes/+page.svelte 178 additions, 0 deletionssrc/routes/+page.svelte
- static/favicon.png 0 additions, 0 deletionsstatic/favicon.png
- static/water.css 0 additions, 0 deletionsstatic/water.css
- svelte.config.js 20 additions, 0 deletionssvelte.config.js
- tests/test.ts 6 additions, 0 deletionstests/test.ts
- tsconfig.json 17 additions, 0 deletionstsconfig.json
- vite.config.ts 8 additions, 0 deletionsvite.config.ts
.eslintignore
0 → 100644
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.npmrc
0 → 100644
.prettierignore
0 → 100644
.prettierrc
0 → 100644
README.md
0 → 100644
package.json
0 → 100644
{ | |||
"name": "webapp", | |||
"version": "0.0.1", | |||
"private": true, | |||
"scripts": { | |||
"dev": "vite dev", | |||
"build": "vite build", | |||
"preview": "vite preview", | |||
"test": "playwright test", | |||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | |||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | |||
"lint": "prettier --plugin-search-dir . --check . && eslint .", | |||
"format": "prettier --plugin-search-dir . --write ." | |||
}, | |||
"devDependencies": { | |||
"@playwright/test": "^1.25.0", | |||
"@sveltejs/adapter-auto": "next", | |||
"@sveltejs/kit": "next", | |||
"@typescript-eslint/eslint-plugin": "^5.27.0", | |||
"@typescript-eslint/parser": "^5.27.0", | |||
"eslint": "^8.16.0", | |||
"eslint-config-prettier": "^8.3.0", | |||
"eslint-plugin-svelte3": "^4.0.0", | |||
"prettier": "^2.6.2", | |||
"prettier-plugin-svelte": "^2.7.0", | |||
"svelte": "^3.44.0", | |||
"svelte-check": "^2.7.1", | |||
"svelte-preprocess": "^4.10.6", | |||
"tslib": "^2.3.1", | |||
"typescript": "^4.7.4", | |||
"vite": "^3.1.0" | |||
}, | |||
"type": "module", | |||
"dependencies": { | |||
"@sveltejs/adapter-static": "1.0.0-next.43" | |||
} | |||
} |
playwright.config.ts
0 → 100644
pnpm-lock.yaml
0 → 100644
This diff is collapsed.
src/app.d.ts
0 → 100644
src/app.html
0 → 100644
src/routes/+page.svelte
0 → 100644
static/favicon.png
0 → 100644
1.53 KiB
static/water.css
0 → 100644
This diff is collapsed.
svelte.config.js
0 → 100644
tests/test.ts
0 → 100644
tsconfig.json
0 → 100644
vite.config.ts
0 → 100644