Inital Commit

This commit is contained in:
Steven 2023-02-19 22:39:26 -05:00
commit d563adacf9
69 changed files with 10401 additions and 0 deletions

56
package.json Normal file
View file

@ -0,0 +1,56 @@
{
"name": "@example/tags",
"type": "module",
"version": "0.0.1",
"private": true,
"licnese": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"tauri": "tauri",
"test": "vitest",
"coverage": "vitest run --coverage",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"git:prepare": "husky install",
"lint:style":"stylelint \"**/*.{pcss,css,astro,svelte}\"",
"lint:check":"eslint",
"lint:fix":"eslint --fix"
},
"dependencies": {
"@astrojs/rss": "^1.2.0",
"@astrojs/svelte": "^2.0.1",
"@astrojs/tailwind": "^3.0.0",
"@tailwindcss/typography": "^0.5.9",
"@tauri-apps/api": "^1.2.0",
"astro": "^2.0.4",
"nanostores": "^0.7.3",
"postcss-ts-classnames": "^0.3.0",
"svelte": "^3.54.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.9.5",
"vite": "^4.1.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitest/coverage-c8": "^0.28.5",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.15",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"postcss-advanced-variables": "^3.0.1",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.0.1",
"prettier": "2.8.4",
"rollup": "^3.15.0",
"stylelint": "^15.1.0",
"stylelint-config-standard": "^30.0.1",
"vitest": "^0.28.5"
}
}