sticky-notes/package.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2023-09-11 05:49:56 +08:00
{
"name": "sticky-notes",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "firebase serve",
2023-09-14 12:05:58 +08:00
"deploy": "npm run build && firebase deploy",
2023-09-11 05:49:56 +08:00
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
2023-10-06 11:21:25 +08:00
"assets": "pwa-assets-generator --preset minimal static/favicon.svg",
2023-09-11 05:49:56 +08:00
"postinstall": "patch-package"
},
"dependencies": {
2023-10-03 13:01:43 +08:00
"@bytemd/plugin-gfm": "^1.21.0",
2023-09-11 05:49:56 +08:00
"bytemd": "1.21.0",
"kysely": "^0.26.3",
2023-12-17 05:08:31 +08:00
"sqlocal": "^0.6.4"
2023-09-11 05:49:56 +08:00
},
"devDependencies": {
"@picocss/pico": "^1.5.10",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.20.4",
2023-10-06 11:21:25 +08:00
"@vite-pwa/assets-generator": "^0.0.10",
2023-10-13 12:45:28 +08:00
"@vite-pwa/sveltekit": "^0.2.7",
2023-09-11 05:49:56 +08:00
"patch-package": "^8.0.0",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.66.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tslib": "^2.4.1",
"typescript": "^5.2.2",
2023-09-11 12:21:49 +08:00
"vite": "^4.4.9"
2023-09-11 05:49:56 +08:00
}
}