-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start rewriting with SvelteAdmin instead of custom stuff
- Loading branch information
1 parent
4d794d3
commit f0fce40
Showing
82 changed files
with
1,154 additions
and
7,005 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,3 @@ node_modules | |
!.env.example | ||
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* | ||
|
||
static/bootstrap* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,9 @@ node_modules | |
pnpm-lock.yaml | ||
package-lock.json | ||
yarn.lock | ||
|
||
# Custom: | ||
/src-tauri | ||
/src/old_routes | ||
/old/ | ||
/.github/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
{ | ||
"useTabs": true, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"plugins": ["prettier-plugin-svelte"], | ||
"pluginSearchDirs": ["."], | ||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] | ||
} | ||
{ | ||
"useTabs": true, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"plugins": ["prettier-plugin-svelte"], | ||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"build": { | ||
"beforeBuildCommand": "yarn run build", | ||
"beforeDevCommand": "yarn run dev", | ||
"devPath": "http://127.0.0.1:5173", | ||
"distDir": "./target/frontend-build" | ||
}, | ||
"package": { | ||
"productName": "compotes", | ||
"version": "0.1.0" | ||
}, | ||
"tauri": { | ||
"allowlist": { | ||
"all": true | ||
}, | ||
"bundle": { | ||
"active": true, | ||
"category": "DeveloperTool", | ||
"copyright": "", | ||
"deb": { | ||
"depends": [] | ||
}, | ||
"externalBin": [], | ||
"icon": [ | ||
"icons/32x32.png", | ||
"icons/128x128.png", | ||
"icons/[email protected]", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
], | ||
"identifier": "io.orbitale.compotes", | ||
"longDescription": "", | ||
"macOS": { | ||
"entitlements": null, | ||
"exceptionDomain": "", | ||
"frameworks": [], | ||
"minimumSystemVersion": "", | ||
"signingIdentity": null | ||
}, | ||
"resources": [], | ||
"shortDescription": "", | ||
"targets": ["msi", "deb"], | ||
"windows": { | ||
"certificateThumbprint": null, | ||
"digestAlgorithm": "sha256", | ||
"timestampUrl": "" | ||
} | ||
}, | ||
"security": { | ||
"csp": "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; object-src 'none'; require-trusted-types-for 'script';" | ||
}, | ||
"updater": { | ||
"active": false | ||
}, | ||
"windows": [ | ||
{ | ||
"fullscreen": false, | ||
"height": 800, | ||
"resizable": true, | ||
"title": "Compotes", | ||
"width": 1024 | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,8 @@ | |
"private": true, | ||
"license": "AGPL-3", | ||
"scripts": { | ||
"app": "concurrently --names \"front,back\" --raw \"vite dev\" \"tauri dev\"", | ||
"dev": "vite dev", | ||
"build": "vite build", | ||
"package": "vite package", | ||
"preview": "vite preview", | ||
"check": "svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch", | ||
|
@@ -18,43 +16,42 @@ | |
"postinstall": "pnpm install --dir tests/webdriverio/" | ||
}, | ||
"devDependencies": { | ||
"@popperjs/core": "^2.11.7", | ||
"@sveltejs/adapter-static": "3.0.1", | ||
"@sveltejs/kit": "^2.5.5", | ||
"@sveltejs/vite-plugin-svelte": "^3.0.2", | ||
"@tauri-apps/api": "^1.2.0", | ||
"@tauri-apps/cli": "^1.2.3", | ||
"@typescript-eslint/eslint-plugin": "^7.5.0", | ||
"@typescript-eslint/parser": "^7.5.0", | ||
"@zerodevx/svelte-toast": "^0.9.3", | ||
"bootstrap": "^5.2.3", | ||
"chart.js": "^4.3.0", | ||
"concurrently": "^8.0.1", | ||
"date-fns": "^2.30.0", | ||
"date-picker-svelte": "^2.4.2", | ||
"eslint": "^8.39.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-svelte3": "^4.0.0", | ||
"luxon": "^3.3.0", | ||
"prettier": "^3.0.1", | ||
"prettier-plugin-svelte": "^3.0.3", | ||
"sass": "^1.62.1", | ||
"svelte": "^4.1.2", | ||
"@orbitale/svelte-admin": "^0.16.0", | ||
"@sveltejs/adapter-static": "^3.0.1", | ||
"@sveltejs/kit": "^2.3.5", | ||
"@sveltejs/vite-plugin-svelte": "^3.0.0", | ||
"@tauri-apps/api": "^1.5.3", | ||
"@tauri-apps/cli": "^1.5.9", | ||
"@types/eslint": "8.56.0", | ||
"@typescript-eslint/eslint-plugin": "^6.0.0", | ||
"@typescript-eslint/parser": "^6.0.0", | ||
"@zerodevx/svelte-toast": "^0.9.5", | ||
"carbon-components-svelte": "^0.82.8", | ||
"carbon-icons-svelte": "^12.4.2", | ||
"chart.js": "^4.4.1", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-svelte": "^2.35.1", | ||
"luxon": "^3.4.4", | ||
"prettier": "^3.2.4", | ||
"prettier-plugin-svelte": "^3.1.2", | ||
"sass": "^1.70.0", | ||
"svelte": "^4.2.7", | ||
"svelte-chartjs": "^3.1.2", | ||
"svelte-check": "^3.2.0", | ||
"svelte-dragdroplist": "^1.1.1", | ||
"svelte-preprocess": "^5.0.3", | ||
"ts-results-es": "^4.0.0", | ||
"tslib": "^2.5.0", | ||
"typescript": "^5.0.4", | ||
"vite": "^4.5.5" | ||
"vite": "^4.5.5" | ||
}, | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"type": "module", | ||
"dependencies": { | ||
"emoji-regex": "^10.3.0", | ||
"rimraf": "^5.0.5", | ||
"string-width": "^7.1.0", | ||
"supports-color": "^9.4.0" | ||
"emoji-regex": "^8.0.0", | ||
"rimraf": "^3.0.2", | ||
"string-width": "^5.1.2", | ||
"supports-color": "^8.1.1" | ||
} | ||
} |
Oops, something went wrong.