-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 2.72 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
52
53
54
55
56
57
58
59
60
{
"author": {
"name": "David Herron",
"email": "[email protected]",
"url": "http://davidherron.com"
},
"name": "akashacms-example",
"description": "AkashaCMS Example website",
"version": "0.8.0",
"repository": {
"type": "git",
"url": "git://github.com/akashacms/akashacms-example.git"
},
"scripts": {
"build": "npm-run-all build:copy build:render",
"build:copy": "akasharender copy-assets config.js",
"build:render": "akasharender render config.js",
"build-vue": "npm-run-all build-vue:example-1",
"build-vue:example-1": "cd vue-js-examples/example-1 && npm install && npm run build",
"deploy": "cd out && rsync --archive --delete --exclude '.well-known' --exclude '.well-known/*' --verbose ./ [email protected]:example.akashacms.com/ ",
"gh-pages": "akasharender gh-pages-publish config.js",
"watch": "npm-run-all --parallel watcher preview",
"watcher": "akasharender watch config.js",
"preview": "live-server out",
"test": "npm-run-all build test:mocha",
"test:mocha": "cd test && mocha ./index",
"update:modules": "git submodule update --recursive --remote --checkout",
"checkout": "npm-run-all checkout:*",
"checkout:akashacms-external-links": "cd modules/akashacms-external-links && git checkout master",
"checkout:akashacms-tagged-content": "cd modules/akashacms-tagged-content && git checkout watcher"
},
"dependencies": {
"@akashacms/plugin-dlassets": "./modules/akashacms-dlassets",
"@akashacms/plugin-external-links": "./modules/akashacms-external-links",
"@akashacms/plugins-authors": "./modules/akashacms-plugin-authors",
"@akashacms/plugins-base": "./modules/akashacms-base",
"@akashacms/plugins-booknav": "./modules/akashacms-booknav",
"@akashacms/plugins-breadcrumbs": "./modules/akashacms-breadcrumbs",
"@akashacms/plugins-document-viewers": "./modules/akashacms-document-viewers",
"@akashacms/plugins-embeddables": "./modules/akashacms-embeddables",
"@akashacms/plugins-footnotes": "./modules/akashacms-footnotes",
"@akashacms/plugins-tagged-content": "./modules/akashacms-tagged-content",
"@akashacms/theme-bootstrap": "./modules/akashacms-theme-bootstrap",
"@compodoc/live-server": "^1.2.x",
"@akashacms/plugins-affiliates": "./modules/akashacms-affiliates",
"akasharender": "./modules/akasharender",
"bootstrap": "^4.6.x",
"chai": "^4.3.x",
"epub-skeleton": "github:akashacms/epub-skeleton",
"epub-website": "./modules/epub-website",
"fs-extra": "^10.x",
"jquery": "^3.6.x",
"markdown-it-highlightjs": "^3.5.0",
"markdown-it-plantuml": "^1.4.x",
"mocha": "^9.1.x",
"npm-run-all": "^4.1.x",
"oembetter": "^0.1.19",
"popper.js": ">=1.16.x"
}
}