-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 933 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 933 Bytes
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
{
"name": "modulo-website",
"author": "michaelb",
"version": "0.1.0",
"description": "Website for Modulo, the lightweight, easy-to-learn Web Component JavaScript framework",
"homepage": "https://modulojs.org/",
"scripts": {
"help": "modulocli help",
"start": "npm exec -y http-server -- -p 3334 -e html src/",
"start-3335": "npm exec -y http-server -- -p 3335 -e html src/",
"startcms": "cd src && npm exec -y netlify-cms-proxy-server",
"rebuild-pages": "find src/examples/ src/docs src/devlog src/tutorial -iname *.html > src/static/data/pages.txt",
"clean": "rm -r build/*",
"build": "modulocli ssg -f -v"
},
"license": "CC-BY-SA 4.0",
"devDependencies": {
"express": "^4.18.2",
"mdu.js": "^0.0.66"
},
"modulo": {
"isCopyOnly": "^(static|slides)$",
"output": "build",
"input": "src"
}
}