Start of themes

This commit is contained in:
Gregory Schier
2023-03-07 11:24:38 -08:00
parent b48a41aaec
commit 5aa80d8ea8
24 changed files with 1490 additions and 156 deletions

View File

@@ -10,7 +10,9 @@
"preview": "vite preview",
"tauri-dev": "concurrently -n app,rsw \"tauri dev\" \"rsw watch\"",
"tauri-build": "npm run build:icon && tauri build",
"build:icon": "tauri icon src-tauri/icons/icon.png"
"build:icon": "tauri icon src-tauri/icons/icon.png",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@codemirror/commands": "^6.2.1",
@@ -34,6 +36,7 @@
"classnames": "^2.3.2",
"codemirror": "^6.0.1",
"framer-motion": "^9.0.4",
"parse-color": "^1.0.0",
"parse-json": "^6.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
@@ -43,6 +46,7 @@
"devDependencies": {
"@tauri-apps/cli": "^1.2.2",
"@types/node": "^18.7.10",
"@types/parse-color": "^1.0.1",
"@types/parse-json": "^4.0.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
@@ -63,6 +67,7 @@
"typescript": "^4.6.4",
"vite": "^4.0.0",
"vite-plugin-rsw": "^2.0.11",
"vite-plugin-top-level-await": "^1.2.4"
"vite-plugin-top-level-await": "^1.2.4",
"vitest": "^0.29.2"
}
}