-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.38 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
{
"name": "web-development-course",
"version": "2.0.0",
"description": "Курс Web-программирования, ПГНИУ, г. Пермь",
"main": "index.js",
"scripts": {
"toc": "markdown-toc -i README.md && markdown-toc -i Plan.md",
"build:pages": "node scripts/build-pages.js",
"build:labs": "node scripts/build-labs.js",
"build:materials-html": "marp ./materials/**/*.md",
"build:materials-pdf": "marp --pdf --allow-local-files ./materials/**/*.md",
"build:materials": "npm run build:materials-html && npm run build:materials-pdf",
"build": "npm run toc && npm run build:materials && npm run build:pages && npm run build:labs",
"watch:materials": "marp -w ./materials/**/*.md",
"serve:materials": "marp -s ./materials",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShGKme/web-development-course.git"
},
"author": "Grigorii K. Shartsev <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ShGKme/web-development-course/issues"
},
"homepage": "http://web.shgk.me",
"dependencies": {
"@marp-team/marp-cli": "^0.21.1",
"markdown-toc": "^1.2.0",
"md-to-pdf": "^3.1.1"
},
"prettier": {
"endOfLine": "lf",
"semi": true,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "all"
}
}