jedmund-svelte/package.json
Justin Edmund 064e02cc8d Add package dependencies
* Added Redis for our cache
* GiantBomb API for image lookups (or so we thought)
* Custom fork of psn-api for recently played API
* tinyduration for unwrapping PSN's implemention of ISO 8601 durations
2024-08-05 23:37:54 -07:00

53 lines
1.5 KiB
JSON

{
"name": "jedmund-svelte",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "node build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@musicorum/lastfm": "github:jedmund/lastfm",
"@poppanator/sveltekit-svg": "^5.0.0-svelte5.4",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/eslint": "^8.56.7",
"@types/node": "^22.0.2",
"autoprefixer": "^10.4.19",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"postcss": "^8.4.39",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"sass": "^1.77.8",
"svelte": "^5.0.0-next.1",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.0.3"
},
"type": "module",
"dependencies": {
"@sveltejs/adapter-node": "^5.2.0",
"@types/redis": "^4.0.10",
"@types/steamapi": "^2.2.5",
"dotenv": "^16.4.5",
"giantbombing-api": "^1.0.4",
"ioredis": "^5.4.1",
"node-itunes-search": "^1.2.3",
"psn-api": "github:jedmund/psn-api",
"redis": "^4.7.0",
"steamapi": "^3.0.11",
"tinyduration": "^3.3.1"
}
}