-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2 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
{
"name": "hulter-dev-blog",
"version": "2.1.0",
"private": false,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --plugin-search-dir=. --check .",
"format": "prettier --plugin-search-dir=. --write .",
"cz": "cz",
"prepare": "husky install",
"lint": "eslint .",
"test": "playwright test",
"test:watch": "playwright test --watch",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report"
},
"dependencies": {
"@anatine/zod-mock": "^3.8.4",
"@astrojs/rss": "^2.1.1",
"@markdoc/markdoc": "^0.2.2",
"astro": "^2.0.15",
"astro-compress": "^1.1.34",
"fuse.js": "^6.6.2",
"github-slugger": "^2.0.0",
"remark-breaks": "^3.0.2",
"remark-code-title": "^0.2.3",
"remark-collapse": "^0.1.2",
"remark-toc": "^8.0.1",
"satori": "^0.2.5",
"tailwindcss": "^3.2.7",
"znv": "^0.3.2",
"zod": "^3.20.6",
"zod-fetch": "^0.1.0"
},
"devDependencies": {
"@astrojs/react": "^2.0.2",
"@astrojs/sitemap": "^1.1.0",
"@astrojs/tailwind": "^3.0.1",
"@playwright/test": "^1.31.1",
"@swc/wasm": "^1.3.36",
"@tailwindcss/typography": "^0.5.9",
"@types/github-slugger": "^1.3.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/parser": "^5.53.0",
"astro-eslint-parser": "^0.11.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-plugin-astro": "^0.23.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": [
"prettier --plugin-search-dir=. --write"
]
}
}