-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 816 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 816 Bytes
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
{
"name": "dog-shelter",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:chromium": "playwright test --project=chromium"
},
"dependencies": {
"@astrojs/node": "^9.5.2",
"@astrojs/svelte": "^7.2.5",
"@tailwindcss/vite": "^4.1.12",
"astro": "^5.15.1",
"svelte": "^5.55.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@types/node": "^24.3.1",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17"
}
}