forked from RAKWireless/rakwireless-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs --no-cache",
"watch:dev": "nodemon",
"prepare": "patch-package"
},
"dependencies": {
"@quasar/extras": "^1.16.5",
"@vuepress/core": "^1.4.1",
"@vuepress/plugin-back-to-top": "^1.4.1",
"@vuepress/plugin-medium-zoom": "^1.4.1",
"@vuepress/plugin-nprogress": "^1.4.1",
"animate.css": "^4.1.0",
"axios": "^0.27.2",
"html2canvas": "^1.0.0-rc.5",
"html2pdf.js": "^0.9.2",
"js-cookie": "^2.2.1",
"jspdf": "^2.3.1",
"lodash": "^4.17.19",
"markdown-it-include": "^1.1.0",
"moment": "^2.29.4",
"node-sass": "^7.0.1",
"nodemon": "^2.0.3",
"quasar": "1.12.11",
"sass-loader": "^8.0.2",
"vuepress": "^1.9.10",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-redirect": "^1.2.3",
"vuepress-plugin-robots": "^1.0.1",
"vuepress-plugin-sitemap": "^2.3.1"
},
"nodemonConfig": {
"exec": "yarn run docs:dev",
"restartable": "rs",
"ignore": [
".git"
],
"verbose": true,
"watch": [
"node_modules/**/node_modules",
"docs/.vuepress/**",
"docs/en-us/**",
"docs/zh-cn/**"
]
},
"devDependencies": {
"patch-package": "^6.2.2",
"postinstall-prepare": "^1.0.1"
}
}