-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "v0x",
"version": "1.0.0",
"type": "module",
"repository": "git@github.com:dstotijn/v0x.git",
"author": "David Stotijn <dstotijn@gmail.com>",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 18.7.1"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"lint": "eslint --ext .js,.cjs,.mjs,.ts,.astro src"
},
"dependencies": {
"@astrojs/mdx": "^1.0.0",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"astro": "^3.0.0",
"sharp": "^0.32.5",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@fontsource/jetbrains-mono": "^5.0.9",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"astro-icon": "^0.8.1",
"eslint": "^8.48.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"image-size": "^1.0.2",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"rollup": "^3.28.1",
"typescript": "^5.2.2"
}
}