-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.55 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
{
"name": "discue-io-api-docs",
"version": "0.7.0",
"description": "Documentation module of discue.io: A secure and reliable messaging and queueing service.",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"docs:serve": "nodemon --ext md,vue,js,scss --ignore docs/.vuepress/.cache --ignore docs/.vuepress/.temp --watch docs/ --watch styles --exec npm run docs:dev",
"docs:dev": "npm run docs:styles && npx vuepress dev docs",
"docs:build": "npm run docs:styles && vuepress build docs",
"docs:styles": "postcss styles/styles.scss -o docs/.vuepress/styles/index.scss",
"release": "standard-version && git push --follow-tags origin main",
"release-minor": "standard-version --release-as minor && git push --follow-tags origin main"
},
"keywords": [],
"author": "Stefan Pfaffel",
"license": "MIT",
"devDependencies": {
"@discue/ui-components": "^0.49.0",
"@discue/vuepress-plugin-outline": "^0.5.0",
"@vuepress/bundler-vite": "^2.0.0-rc.19",
"@vuepress/markdown": "2.0.0-rc.19",
"@vuepress/plugin-shiki": "2.0.0-rc.68",
"@vuepress/theme-default": "2.0.0-rc.70",
"autoprefixer": "^10.4.18",
"firebase-tools": "^13.29.1",
"markdown-it-attrs": "^4.3.1",
"nodemon": "^3.1.9",
"pascal-case": "^4.0.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"snake-case": "^4.0.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.17",
"yaml": "^2.7.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.0"
}
}