-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.03 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.03 KB
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
50
51
52
{
"name": "spin-docs",
"version": "0.1.0",
"homepage": "https://spinframework.dev",
"author": {
"name": "Spin Maintainers",
"email": "spin@cncf.io",
"url": "https://spinframework.dev"
},
"description": "Spin project website",
"repository": {
"type": "git",
"url": "git+https://github.com/spinframework/spin-docs.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spinframework/spin-docs/issues"
},
"devDependencies": {
"@fermyon/styleguide": "^0.1.8",
"@parcel/transformer-sass": "2.16.1",
"args-parser": "^1.3.0",
"broken-link-checker": "0.7.8",
"concurrently": "9.2.1",
"front-matter": "^4.0.2",
"glob": "11.1.0",
"lunr": "^2.3.9",
"markdownlint-cli2": "^0.18.1",
"markdownlint-rule-titlecase": "^0.1.0",
"nodemon": "3.1.10",
"parcel": "^2.16.1",
"redom": "4.3.0",
"remark-parse": "11.0.0",
"sass": "1.93.3",
"unified": "11.0.5",
"yaml-front-matter": "^4.1.1"
},
"overrides": {
"fsevents": "~2.3.3"
},
"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",
"bundle-scripts-ci": "parcel build static/js/src/main.js --dist-dir static/js --no-source-maps",
"styles": "sass --watch static/sass/styles.scss static/css/styles.css",
"lint-markdown": "npx markdownlint-cli2 content/**/*.md \"#node_modules\"",
"test": "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,"
}
}