-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.31 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
{
"name": "decks",
"version": "0.0.1",
"description": "Public decks for the We Will Craft classes.",
"author": "We Will Craft <[email protected]>",
"private": true,
"scripts": {
"clean": "rimraf dist/",
"server": "npm run clean && npm-run-all --parallel utils:* watch:*",
"watch:src": "marp --watch --input-dir src/ --output dist/",
"watch:dist": "live-server dist/ --host=0.0.0.0 --port=8080 --watch=dist/",
"utils:copy-assets": "node ./utils/copyAssets.js",
"utils:copy-static": "cpy \"static/**/*\" dist/",
"export": "npm-run-all --parallel export:*",
"export:html": "marp && npm-run-all --parallel utils:*",
"export:pdf": "marp --pdf --pdf-notes",
"export:image": "marp --image png",
"export:pptx": "marp --pptx"
},
"devDependencies": {
"@marp-team/marp-cli": "^1.5.0",
"cpy-cli": "^3.1.1",
"fs-extra": "^10.0.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"homepage": "https://github.com/wewillcraft/decks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wewillcraft/decks.git"
},
"bugs": {
"url": "https://github.com/wewillcraft/decks/issues"
},
"license": "MIT"
}