-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 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
{
"name": "vuepress-theme-casper",
"version": "1.1.1",
"description": "Ghosts Casper Theme for VuePress",
"main": "blog/.vuepress/theme/index.js",
"repository": "git@github.com:alexander-heimbuch/vuepress-theme-casper.git",
"author": "Alexander Heimbuch <github@heimbu.ch>",
"license": "MIT",
"scripts": {
"dev": "vuepress dev blog",
"build": "rm -rf dist/ && vuepress build blog --dest dist/",
"bundle:clean": "rm -rf publish && mkdir -p publish",
"bundle:copy": "cp -R blog/.vuepress/theme/* publish/ && cp package.json publish/",
"bundle": "npm run bundle:clean && npm run bundle:copy",
"deploy:gh-pages": "GH_EMAIL=github@heimbu.ch GH_NAME='Alexander Heimbuch' ./scripts/gh-pages.sh dist"
},
"dependencies": {
"lodash": "^4.17.10",
"node-sass": "^4.9.0",
"normalize.css": "^8.0.0",
"prismjs": "^1.15.0",
"sass-loader": "^7.0.3",
"striptags": "^3.1.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"vue": "^2.5.16",
"vuepress": "^1.0.0-alpha.39"
},
"peerDependencies": {
"vue": "2.5.x",
"vuepress": "^1.0.0-alpha.39"
}
}