-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "publication2023",
"type": "module",
"version": "2.7.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:strict": "astro check && tsc --noEmit && vue-tsc --noEmit && astro build",
"preview": "astro preview",
"astro": "astro",
"typechecking": "astro check && tsc --noEmit && vue-tsc --noEmit",
"lint:js": "eslint --ext \".ts,.js,.astro,.vue\" --ignore-path .gitignore ./src",
"lint:style": "stylelint \"**/*.{scss,sass}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"test:unit": "vitest",
"test:unit:coverage": "vitest run --coverage",
"format": "npx prettier --write .",
"postbuild": "pagefind --site dist/"
},
"dependencies": {
"@astrojs/mdx": "^2.0.3",
"@astrojs/prefetch": "^0.4.1",
"@astrojs/sitemap": "^3.0.4",
"@astrojs/vue": "^4.0.6",
"@felix_berlin/sass-butler": "^2.6.3",
"@iconify-json/lucide": "^1.1.150",
"@iconify-json/simple-icons": "^1.1.86",
"@pagefind/default-ui": "^1.0.4",
"@vueuse/core": "^10.7.1",
"astro": "^4.0.8",
"astro-breadcrumbs": "^1.8.1",
"astro-icon": "^1.0.1",
"astrojs-service-worker": "^2.0.0",
"lucide-vue-next": "^0.303.0",
"pagefind": "^1.0.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.3.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitejs/plugin-vue": "^5.0.2",
"@vitest/coverage-v8": "^1.1.0",
"@vue/test-utils": "^2.4.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-vue": "^9.19.2",
"eslint-plugin-vuejs-accessibility": "^2.2.0",
"jsdom": "^23.0.1",
"postcss": "^8.4.32",
"postcss-html": "^1.5.0",
"postcss-preset-env": "^9.3.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.3",
"sass": "^1.69.6",
"semantic-release": "^22.0.12",
"stylelint": "^16.1.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.0",
"vue-tsc": "^1.8.27"
}
}