-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 KB
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
{
"name": "bizarre-binary",
"type": "module",
"version": "0.0.1",
"private": true,
"lint-staged": {
"*.{js,jsx,ts,tsx,svelte}": "npm run lint:fix"
},
"scripts": {
"prepare": "husky install",
"dev": "astro dev --host",
"start": "astro dev --host",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"vite": "vite",
"test": "vitest run",
"test:watch": "vitest ",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@astrojs/mdx": "^0.19.0",
"@astrojs/partytown": "^2.1.2",
"@astrojs/svelte": "^2.0.1",
"@github/clipboard-copy-element": "^1.1.2",
"@iconify-json/bi": "^1.1.15",
"@types/lodash-es": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@unocss/preset-icons": "^0.51.13",
"@unocss/preset-typography": "^0.51.13",
"@vite-pwa/astro": "^0.0.5",
"astro": "^2.0.6",
"colord": "^2.9.3",
"daisyui": "^2.52.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-astro": "^0.27.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-svelte": "^2.15.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"lodash-es": "^4.17.21",
"prettier": "^2.8.3",
"prettier-plugin-astro": "^0.8.0",
"prettier-plugin-svelte": "^2.8.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-mathjax": "^4.0.2",
"rehype-slug": "^5.1.0",
"remark-math": "^5.1.1",
"svelte": "^3.55.1",
"unocss": "^0.50.2",
"unocss-preset-daisy": "^4.0.0",
"vite-plugin-pwa": "^0.14.7",
"vitest": "^0.31.1"
}
}