-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.75 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
{
"type": "module",
"version": "0.0.1",
"name": "astro-advanced-poc",
"scripts": {
"dev": "astro dev --port 3000",
"dev:https": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check": "astro check --minimumSeverity=warning --minimumFailingSeverity=warning",
"verify": "pnpm test && pnpm typecheck && pnpm check",
"generate:graphql": "graphql-codegen --config codegen.ts",
"generate:locales": "sh pull-locale-json.sh && tsx ./src/i18n/import.ts"
},
"engines": {
"node": ">=18.19.0"
},
"dependencies": {
"@astrojs/node": "8.0.0",
"@astrojs/partytown": "2.0.4",
"@astrojs/svelte": "5.0.3",
"@astrojs/tailwind": "5.1.0",
"@urql/core": "4.2.3",
"astro": "4.2.1",
"astro-compressor": "0.4.1",
"google-auth-library": "^8.7.0",
"google-oauth-gsi": "4.0.0",
"graphql-tag": "^2.12.6",
"jwt-decode": "4.0.0",
"lodash-es": "4.17.21",
"svelte": "4.2.9",
"tailwindcss": "3.4.1",
"typesafe-i18n": "5.26.2",
"vite": "5.0.12",
"zod": "3.22.4"
},
"devDependencies": {
"@astrojs/check": "0.4.1",
"@astrojs/ts-plugin": "1.4.0",
"@babel/core": "7.23.7",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-document-nodes": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@types/lodash-es": "4.17.12",
"astro-compress": "2.2.8",
"autoprefixer": "10.4.17",
"graphql": "16.8.1",
"node-fetch": "3.3.2",
"postcss": "8.4.33",
"prettier": "3.2.4",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-svelte": "3.1.2",
"tsx": "4.7.0",
"typescript": "5.2.2",
"vite-plugin-mkcert": "1.17.3",
"vitest": "1.2.1"
}
}