-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 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
{
"name": "vuepress-examples",
"version": "3.0.1",
"scripts": {
"start": "vuepress dev --no-clear-screen --debug",
"publish": "vuepress build",
"serve": "cd .vuepress/dist/ && http-server -p 8000",
"socket.io": "node socket",
"native.socket": "node native",
"commit_package": "od -A n -t d -N 3 /dev/urandom > ./.rnd && git add .vuepress/public/sitemap.xml package.json ./.rnd && git commit -m sitemap_updated",
"tag_patch": "yarn run commit_package && npm version patch",
"tag_minor": "yarn run commit_package && npm version minor",
"tag_major": "yarn run commit_package && npm version major",
"preversion": "node build_sitemap",
"version": "",
"postversion": "cross-var git tag $npm_package_version && git push && git push --tags"
},
"dependencies": {
"@vuepress/plugin-google-analytics": "1.4.1",
"axios": "0.18.1",
"cross-var": "1.1.0",
"express": "4.17.1",
"mermaid": "9.1.2",
"semver-compare": "1.0.0",
"sitemap": "2.2.0",
"socket.io": "2.3.0",
"vue-gtm": "2.2.0",
"vue-native-websocket": "2.0.13",
"vue-script2": "2.1.0",
"vue-socket.io": "3.0.7",
"vue-tweet-embed": "2.3.0",
"vue-typed-js": "0.1.2",
"vuepress": "1.4.1",
"websocket": "1.0.31"
},
"devDependencies": {
"core-js": "2.6.9",
"http-server": "0.11.1",
"webpack": "4.43.0"
}
}