-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "@roma-js/site",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"clear": "rm -rf .astro dist",
"build": "npm run lint:ts && astro build",
"astro:sync": "astro sync",
"astro:upgrade": "pnpm dlx @astrojs/upgrade",
"lint:ts": "tsc --noEmit",
"lint:astro": "astro check",
"create-post": "node scripts/create-post.mjs",
"preview": "astro preview",
"fmt": "prettier . --write",
"test": "vitest --run -c vitest.config.mts",
"test:watch": "vitest --watch",
"prepare": "husky install; pnpm run astro:sync",
"pre-commit": "lint-staged"
},
"engines": {
"node": "^22.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/solid-js": "^4.4.1",
"astro": "4.15.4",
"astro-i18next": "1.0.0-beta.21",
"chalk": "^5.0.1",
"husky": "^8.0.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"mustache": "^4.2.0",
"prettier": "2.8.7",
"prompts": "^2.4.2",
"sass": "^1.77.8",
"tiny-invariant": "^1.3.3",
"vitest": "^2.0.2"
},
"dependencies": {
"@fontsource/open-sans": "^5.0.28",
"@solid-primitives/media": "^2.2.9",
"@tanstack/solid-query": "^4.33.0",
"date-fns": "^3.6.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"i18next": "22.4.10",
"normalize.css": "^8.0.1",
"slugify": "^1.6.6",
"solid-js": "^1.8.21",
"solid-transition-group": "^0.2.3",
"typescript": "^5.5.4"
}
}