-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "opti-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "graphql-codegen --config codegen.ts && astro dev",
"prod:hotreload": "graphql-codegen --config codegen.ts && astro dev --host",
"start": "node dist/server/entry.mjs",
"build": "graphql-codegen --config codegen.ts && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"codegen": "graphql-codegen --config codegen.ts",
"codegen:watch": "graphql-codegen --watch --config codegen.ts",
"styles:push": "node --env-file=.env ./utils/styles/push.mjs",
"styles:pull": "node --env-file=.env ./utils/styles/pull.mjs",
"style:push": "node --env-file=.env ./utils/styles/push.mjs",
"style:pull": "node --env-file=.env ./utils/styles/pull.mjs",
"style:delete": "node --env-file=.env ./utils/styles/delete.mjs",
"types:pull": "node --env-file=.env ./utils/types/pull.mjs",
"types:push": "node --env-file=.env ./utils/types/push.mjs",
"type:pull": "node --env-file=.env ./utils/types/pull.mjs",
"type:push": "node --env-file=.env ./utils/types/push.mjs"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.9",
"@astrojs/check": "0.9.5",
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/compiler": "2.13.0",
"@astrojs/netlify": "^6.6.3",
"@astrojs/node": "^9.5.1",
"@astrojs/svelte": "^7.2.3",
"@astrojs/ts-plugin": "1.10.5",
"@astrojs/vercel": "^9.0.2",
"@deno/astro-adapter": "^0.3.2",
"@optimizely/optimizely-sdk": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@splidejs/splide": "^4.1.4",
"@tailwindcss/vite": "^4.0.12",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.8",
"aos": "^2.3.4",
"astro": "5.16.0",
"astro-auto-adapter": "^2.3.0",
"astro-embed": "^0.9.0",
"autoprefixer": "^10.4.21",
"chart.js": "^4.5.1",
"daisyui": "^5.0.43",
"date-fns": "^4.1.0",
"graphql": "^16.10.0",
"graphql-request": "6.1.0",
"lucide-svelte": "^0.548.0",
"path-to-regexp": "6.3.0",
"query-string": "^9.1.1",
"svelte": "^5.41.2",
"tailwindcss": "^4.0.12",
"typescript": "^5.9.3"
},
"devDependencies": {
"@babel/parser": "^7.27.0",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.5",
"@graphql-codegen/typescript-generic-sdk": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "6.2.0",
"@graphql-codegen/typescript-operations": "^4.5.1",
"@parcel/watcher": "^2.5.1",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.10",
"astrobook": "^0.13.2",
"fast-glob": "^3.3.3",
"graphql-sock": "^1.0.1",
"graphql-tag": "^2.12.6",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"vite": "^6.2.7",
"vite-plugin-mkcert": "^1.17.7"
},
"packageManager": "yarn@4.9.1",
"engines": {
"node": "22.x"
}
}