-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "the-new-oil-website",
"type": "module",
"scripts": {
"setup": "npm i && astro telemetry disable",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"scripts:fetch-blog": "ts-node scripts/fetchBlog/index.ts"
},
"engines": {
"node": ">= 20"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@iconify-json/mdi": "^1.2.0",
"@types/node": "^20.16.5",
"astro-compress": "^2.3.1",
"astro-robots-txt": "^1.0.0",
"linkedom": "^0.18.4",
"node-fetch": "^3.3.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"sass": "^1.80.6",
"string-strip-html": "^13.0.4",
"svgo": "2.8",
"ts-node": ">= 10.9.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@astrojs/mdx": "^4.0.1",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.3",
"@astropub/md": "^1.0.0",
"@fontsource/roboto": "^4.5.8",
"@fontsource/roboto-mono": "^4.5.8",
"astro": "^5.0.3",
"astro-icon": "^1.1.1",
"tailwindcss": "^3.2.4"
},
"volta": {
"node": "20.17.0"
}
}