-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.58 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "kylee-interactive-resume",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "npm run check:translations && astro build",
"preview": "astro preview",
"check": "astro check && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"check:translations": "node ./scripts/check-translation-parity.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@astrojs/sitemap": "^3.7.0",
"@astrojs/svelte": "^7.2.5",
"@eslint/js": "^9.39.0",
"@catppuccin/tailwindcss": "^1.0.0-beta.1",
"@poppanator/sveltekit-svg": "^5.0.1",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@types/node": "^24.0.12",
"astro": "^5.18.0",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.39.0",
"eslint-plugin-astro": "^1.4.0",
"eslint-plugin-svelte": "^3.12.5",
"globals": "^14.0.0",
"prettier-plugin-svelte": "^3.4.0",
"svelte-eslint-parser": "^1.3.3",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animated": "^2.0.0",
"typescript": "^5.9.3",
"vite": "^6.2.6"
},
"dependencies": {
"@astrojs/check": "^0.9.2"
}
}