mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 13:26:16 +03:00
f92a2370bd
- Add date-fns package to project - Update dependencies in pnpm-lock.yaml - Replace manual date calculations with date-fns functions - Add functions to Week class for getting the next/previous week and the nth day of the week [pnpm-lock.yaml] - Add `date-fns` dependency to `pnpm-lock.yaml` - Update `@codemirror/state`, `@codemirror/view`, `@tauri-apps/api`, `idb-keyval`, `mm-jsr`, and `seti-icons` dependencies in `pnpm-lock.yaml` - Add `date-fns` package to `pnpm-lock.yaml` [src/lib/week.ts] - Replace manual date calculations with `date-fns` functions - Make `Week.from` use `weekStartsOn` to set the start of the week - Add `Week.next`, `Week.previous` and `Week.nThDay` functions [package.json] - Add date-fns package
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "git-butler-tauri",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/commands": "^6.2.0",
|
|
"@codemirror/merge": "^0.1.3",
|
|
"@codemirror/state": "^6.2.0",
|
|
"@codemirror/view": "^6.7.3",
|
|
"@tauri-apps/api": "^1.2.0",
|
|
"date-fns": "^2.29.3",
|
|
"idb-keyval": "^6.2.0",
|
|
"mm-jsr": "^3.0.2",
|
|
"seti-icons": "^0.0.4",
|
|
"svelte-icons": "^2.1.0",
|
|
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log",
|
|
"yjs": "^13.5.45"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-static": "next",
|
|
"@sveltejs/kit": "next",
|
|
"@tauri-apps/cli": "^1.2.2",
|
|
"@types/diff": "^5.0.2",
|
|
"autoprefixer": "^10.4.7",
|
|
"eslint": "^8.34.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-svelte": "^2.18.0",
|
|
"eslint-plugin-unicorn": "^45.0.2",
|
|
"postcss": "^8.4.14",
|
|
"postcss-load-config": "^4.0.1",
|
|
"prettier": "^2.8.4",
|
|
"prettier-plugin-svelte": "^2.9.0",
|
|
"prettier-plugin-tailwindcss": "^0.2.2",
|
|
"svelte": "^3.55.1",
|
|
"svelte-check": "^3.0.0",
|
|
"svelte-preprocess": "^4.10.7",
|
|
"tailwindcss": "^3.1.5",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^4.8.4",
|
|
"vite": "^4.0.0"
|
|
}
|
|
}
|