-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "nx-academy.github.io",
"type": "module",
"version": "1.0.0",
"scripts": {
"astro": "astro",
"build": "astro check && astro build --remote",
"check": "astro check",
"db:push-schema": "astro db push --remote",
"dev": "astro dev",
"optimize-images": "node ./scripts/optimizeImages",
"prettier:check": "prettier . --check",
"prettier:format": "prettier . --write",
"preview": "astro preview",
"stagging": "astro dev --remote",
"start": "astro dev",
"test": "vitest"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/db": "^0.20.1",
"@astrojs/react": "^5.0.2",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@fontsource-variable/inter": "^5.2.5",
"@fontsource/pixelify-sans": "^5.0.3",
"@fontsource/space-grotesk": "^5.0.18",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"astro": "^6.1.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.5.3"
},
"devDependencies": {
"prettier": "3.5.3",
"prettier-plugin-astro": "0.14.1",
"sharp": "^0.34.2",
"vitest": "^3.1.1"
}
}