Skip to content

Commit

Permalink
feat: gui
Browse files Browse the repository at this point in the history
  • Loading branch information
ChecksumDev committed Aug 7, 2023
1 parent a305f1d commit d1ecd13
Show file tree
Hide file tree
Showing 78 changed files with 9,601 additions and 404 deletions.
10 changes: 10 additions & 0 deletions apps/gui/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
2 changes: 2 additions & 0 deletions apps/gui/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
engine-strict=true
resolution-mode=highest
16 changes: 16 additions & 0 deletions apps/gui/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

# tauri
src-tauri/
9 changes: 9 additions & 0 deletions apps/gui/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
46 changes: 46 additions & 0 deletions apps/gui/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "gui",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"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": {
"@melt-ui/pp": "^0.1.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "2.0.3",
"@sveltejs/kit": "^1.22.4",
"@tauri-apps/api": "^1.4.0",
"@tauri-apps/cli": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.30.0",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"svelte": "^4.1.2",
"svelte-check": "^3.4.3",
"svelte-sequential-preprocessor": "^2.0.1",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.8"
},
"type": "module",
"dependencies": {
"@melt-ui/svelte": "^0.32.0"
}
}
Loading

0 comments on commit d1ecd13

Please sign in to comment.