forked from fermyon/developer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.93 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
{
"name": "developer-fermyon-com",
"version": "0.1.0",
"homepage": "https://github.com/fermyon/developer",
"author": {
"name": "Fermyon Engineering",
"email": "engineering@fermyon.com",
"url": "https://www.fermyon.com"
},
"description": "The Fermyon developer website",
"repository": {
"type": "git",
"url": "git+https://github.com/fermyon/developer.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fermyon/developer/issues"
},
"devDependencies": {
"@fermyon/styleguide": "^0.1.8",
"@parcel/transformer-sass": "^2.8.0",
"args-parser": "^1.3.0",
"broken-link-checker": "^0.7.8",
"concurrently": "^7.6.0",
"front-matter": "^4.0.2",
"glob": "^8.0.3",
"lunr": "^2.3.9",
"markdownlint-cli2": "^0.5.1",
"markdownlint-rule-titlecase": "^0.1.0",
"nodemon": "^2.0.20",
"parcel": "^2.8.0",
"parcel-bundler": "^1.12.5",
"redom": "^3.29.1",
"remark-parse": "^10.0.1",
"sass": "^1.56.1",
"unified": "^10.1.2",
"yaml-front-matter": "^4.1.1"
},
"scripts": {
"spin": "nodemon --watch content --watch static --watch templates --watch spin-up-hub --ext html,md,rhai,hbs,css,js --verbose --legacy-watch --signal SIGINT --exec 'npm run build-index && npm run build-hub-index && spin up --file spin.toml --quiet --env PREVIEW_MODE=$PREVIEW_MODE'",
"bundle-scripts": "parcel watch static/js/src/main.js --dist-dir static/js --no-source-maps",
"styles": "parcel watch static/sass/styles.scss --dist-dir static/css",
"test": "npx markdownlint-cli2 content/**/*.md \"#node_modules\" && npm run check-broken-links",
"build-index": "node md_parser.mjs --dir=./content/ --out=./static/data.json --ignore=./content/api/**/*",
"check-broken-links": ".build/check-broken-links.sh",
"build-hub-index": "node hub_index_generator.mjs --dir=./content/api/hub/ --out=./static/hub-index-data.json --ignore=./content/api/hub/get_list.md,"
}
}