forked from ServiceStack/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 931 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 931 Bytes
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
{
"name": "vitepress-docs",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@iconify/vue": "^3.1.2",
"@servicestack/client": "^1.2.1",
"autoprefixer": "^10.3.7",
"gray-matter": "^4.0.3",
"markdown-it-container": "^3.0.0",
"postcss": "^8.3.9",
"tailwindcss": "^3.0.24",
"vitepress": "^0.22.4",
"vue-clipboard3": "^1.0.1"
},
"scripts": {
"postinstall": "node postinstall.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:build-mpa": "vitepress build --mpa docs #gens static .html with no js, but broken now",
"docs:serve": "vitepress serve docs"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"glob": "^7.2.0",
"sass": "^1.43.2"
}
}