-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "js-intro",
"version": "0.0.0",
"description": "Lessons for my class, Introduction to Programming Fundamentals in JavaScript",
"scripts": {
"build": "node build.js",
"prebuild": "rm dist/*.* || mkdir dist || echo \"dist already empty\"",
"serve": "serve dist/",
"preserve": "npm run build",
"start": "watch \"npm run build\" site lessons --wait=10 & npm run serve --ignore-scripts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/legodude17/js-intro.git"
},
"type": "module",
"author": "JDB",
"license": "MIT",
"bugs": {
"url": "https://github.com/legodude17/js-intro/issues"
},
"homepage": "https://github.com/legodude17/js-intro#readme",
"dependencies": {
"@remark-embedder/core": "^3.0.1",
"@remark-embedder/transformer-oembed": "^3.0.0",
"@wooorm/starry-night": "^1.3.0",
"github-markdown-css": "^5.1.0",
"handlebars": "^4.7.7",
"hast-util-to-string": "^2.0.0",
"hastscript": "^7.1.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-toc": "^8.0.1",
"resolve": "^1.22.1",
"to-vfile": "^7.2.3",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1",
"yaml": "^2.1.3"
},
"devDependencies": {
"serve": "^14.0.1",
"watch": "^1.0.2"
}
}