mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
e531fe1e82
In a previous version of Appwrite, there was a next attribute with the timestamp of when the function would be executed next. That was removed, but the Console has not been updated to show the correct timestamp. This PR installs cron-parser package and uses it to conver the schedule to a human readable timestamp.
79 lines
2.6 KiB
JSON
79 lines
2.6 KiB
JSON
{
|
|
"name": "@appwrite/console",
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "node build.js",
|
|
"preview": "vite preview",
|
|
"sync": "svelte-kit sync",
|
|
"check": "svelte-check --tsconfig ./tsconfig.json --fail-on-warnings --threshold warning",
|
|
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"lint": "prettier --check . && eslint .",
|
|
"format": "prettier --write .",
|
|
"test": "TZ=EST vitest run",
|
|
"test:ui": "TZ=EST vitest --ui",
|
|
"test:watch": "TZ=EST vitest watch",
|
|
"e2e": "playwright test tests/e2e",
|
|
"e2e:ui": "playwright test tests/e2e --ui"
|
|
},
|
|
"dependencies": {
|
|
"@appwrite.io/console": "^0.6.2",
|
|
"@appwrite.io/pink": "0.23.0",
|
|
"@appwrite.io/pink-icons": "0.23.0",
|
|
"@popperjs/core": "^2.11.8",
|
|
"@sentry/svelte": "^7.66.0",
|
|
"@sentry/tracing": "^7.66.0",
|
|
"@stripe/stripe-js": "^3.4.0",
|
|
"ai": "^2.2.11",
|
|
"analytics": "^0.8.9",
|
|
"cron-parser": "^4.9.0",
|
|
"dayjs": "^1.11.9",
|
|
"deep-equal": "^2.2.2",
|
|
"dotenv": "^16.3.1",
|
|
"echarts": "^5.4.3",
|
|
"nanoid": "^4.0.2",
|
|
"plausible-tracker": "^0.3.8",
|
|
"pretty-bytes": "^6.1.1",
|
|
"prismjs": "^1.29.0",
|
|
"svelte-confetti": "^1.3.0",
|
|
"tippy.js": "^6.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@melt-ui/pp": "^0.1.4",
|
|
"@melt-ui/svelte": "^0.61.2",
|
|
"@playwright/test": "^1.44.0",
|
|
"@sveltejs/adapter-static": "^3.0.1",
|
|
"@sveltejs/kit": "^2.3.4",
|
|
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
|
"@testing-library/dom": "^9.0.1",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/svelte": "^4.0.3",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@types/deep-equal": "^1.0.1",
|
|
"@types/prismjs": "^1.26.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
"@typescript-eslint/parser": "^7.7.0",
|
|
"@vitest/ui": "^1.2.1",
|
|
"eslint": "^8.48.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-svelte": "^2.33.0",
|
|
"jsdom": "^22.1.0",
|
|
"kleur": "^4.1.5",
|
|
"prettier": "^3.2.2",
|
|
"prettier-plugin-svelte": "^3.1.2",
|
|
"sass": "^1.66.1",
|
|
"svelte": "^4.2.9",
|
|
"svelte-check": "^3.5.1",
|
|
"svelte-jester": "^2.3.2",
|
|
"svelte-preprocess": "^5.0.4",
|
|
"svelte-sequential-preprocessor": "^2.0.1",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.0.11",
|
|
"vitest": "^1.2.1"
|
|
},
|
|
"type": "module"
|
|
}
|