-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.67 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
{
"name": "untitled-urbansheep-astro",
"type": "module",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/urbansheep/untitledsheep-astro.git"
},
"scripts": {
"dev": "astro dev",
"dev:host": "astro dev --host",
"start": "astro dev",
"check": "astro check",
"lint:editorconfig": "editorconfig-checker -exclude 'src/content/blog/*'",
"lint:js": "eslint . --fix",
"lint:css": "stylelint \"src/**/*.{astro,css}\" --fix",
"test": "npm run lint:editorconfig && npm run lint:css && npm run lint:js && npm run check",
"build": "astro build",
"info": "astro info",
"preview": "astro preview",
"preview:host": "astro preview --host",
"astro": "astro"
},
"dependencies": {
"@astrojs/node": "^6.0.4",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/vercel": "^5.2.0",
"@resvg/resvg-js": "^2.6.0",
"astro": "^3.5.5",
"satori": "^0.10.11",
"satori-html": "^0.3.2",
"typescript": "^5.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.3.1",
"@typescript-eslint/parser": "^6.11.0",
"astro-compress": "^2.2.3",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"editorconfig-checker": "^5.1.2",
"eslint": "^8.54.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"postcss-html": "^1.5.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.0",
"prettier-plugin-astro": "^0.12.2",
"stylelint": "^15.11.0",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3"
}
}