-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 915 Bytes
/
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
{
"name": "overgrown-to-thriving",
"version": "0.0.1",
"author": "Nicholas Yager <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "rimraf public && npm run -s og-image && npm run -s deck",
"deck": "marp --theme assets/mds_fest.css --html --no-stdin presentation.md -o public/index.html && ncp assets public/assets",
"og-image": "marp --theme assets/mds_fest.css --html --no-stdin presentation.md -o public/og-image.jpg --allow-local-files",
"start": "marp --html -ps .",
"vercel-build": "npm i puppeteer --no-save && MARP_USER=root CHROME_PATH=$(node -e \"console.log(require('puppeteer').executablePath())\") npm run build"
},
"devDependencies": {
"@marp-team/marp-cli": "^2.5.0",
"ncp": "^2.0.0",
"rimraf": "^5.0.0"
},
"dependencies": {
"@marp-team/marp-core": "^3.8.0",
"markdown-it-highlight-lines": "^1.0.2"
}
}