-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 2.13 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hedwig",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --site http://localhost:4321",
"start": "astro dev",
"build": "pnpm generate-translations && astro build",
"preview": "astro preview",
"astro": "astro",
"generate-translations": "npx astro-i18next generate",
"prettier": "prettier --write . --plugin=prettier-plugin-astro",
"test": "firebase emulators:exec --only auth,firestore,storage 'vitest --coverage'",
"test:ui": "firebase emulators:exec --only auth,firestore,storage 'vitest --coverage --ui'",
"test:e2e": "playwright test",
"emulators": "cd functions/ && npm run build && cd .. && firebase emulators:start --import=./firebase-data",
"emulators:export": "firebase emulators:export ./firebase-data"
},
"dependencies": {
"@astrojs/node": "^8.0.0",
"@astrojs/tailwind": "^5.1.0",
"@google-cloud/storage": "^7.12.0",
"@tailwindcss/typography": "^0.5.10",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"astro": "^4.2.4",
"astro-i18next": "1.0.0-beta.21",
"astro-icon": "^1.1.0",
"clsx": "^2.1.0",
"daisyui": "^4.7.2",
"dotenv": "^16.4.5",
"firebase": "^10.8.0",
"firebase-admin": "^12.0.0",
"i18next": "^22.5.1",
"i18next-fs-backend": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.6",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@astrojs/react": "^3.0.9",
"@iconify-json/mdi": "^1.1.66",
"@mdi/font": "^7.4.47",
"@playwright/test": "^1.41.2",
"@types/google.maps": "^3.54.9",
"@types/node": "^20.11.17",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^2.0.4",
"@vitest/ui": "^2.0.4",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.30.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss-nesting": "^12.0.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.12.3",
"sass": "^1.69.5",
"tailwind-merge": "^2.2.1",
"vitest": "^2.0.4",
"vitest-github-actions-reporter": "^0.11.1"
}
}