-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "node ./scripts/getArticles.mjs && vitepress",
"build": "node ./scripts/getArticles.mjs && vitepress build",
"preview": "node ./scripts/getArticles.mjs && vitepress preview",
"preinstall": "npx only-allow pnpm"
},
"type": "module",
"dependencies": {
"@daktadeo/theme": "^2.2.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@vue/repl": "^4.3.1",
"autoprefixer": "^10.4.19",
"dynamics.js": "^1.1.5",
"gray-matter": "^4.0.3",
"gsap": "^3.12.5",
"lodash": "^4.17.21",
"postcss": "^8.4.40",
"remove-markdown": "^0.5.0",
"tailwindcss": "^3.4.7",
"vitepress": "1.3.1",
"vue": "^3.4.34"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.0.0",
"terser": "^5.31.3"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
}
}
}