Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/package.json
4325 views
1
{
2
"name": "content",
3
"version": "1.0.0",
4
"private": true,
5
"license": "SEE LICENSE IN LICENSE.md",
6
"engines": {
7
"node": ">=18.0.0"
8
},
9
"type": "module",
10
"scripts": {
11
"build": "env-cmd --silent cross-env CONTENT_ROOT=files BUILD_OUT_ROOT=build yari-build",
12
"content": "env-cmd --silent cross-env CONTENT_ROOT=files yari-tool",
13
"filecheck": "env-cmd --silent cross-env CONTENT_ROOT=files yari-filecheck --cwd=.",
14
"fix:js": "prettier -w \"**/*.(m)?js\"",
15
"fix:json": "prettier -w \"**/*.json(c)?\"",
16
"fix:md": "markdownlint-cli2-fix \"**/*.md\"",
17
"fix:yml": "prettier -w \"**/*.yml\"",
18
"lint:js": "prettier -c \"**/*.(m)?js\"",
19
"lint:json": "prettier -c \"**/*.json(c)?\"",
20
"lint:md": "markdownlint-cli2 \"**/*.md\"",
21
"lint:yml": "prettier -c \"**/*.yml\"",
22
"prepare": "husky install",
23
"start": "yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files REACT_APP_DISABLE_AUTH=true BUILD_OUT_ROOT=build yari-server",
24
"up-to-date-check": "node scripts/up-to-date-check.js"
25
},
26
"dependencies": {
27
"@mdn/yari": "2.5.13",
28
"cross-env": "7.0.3",
29
"env-cmd": "10.1.0",
30
"husky": "8.0.3",
31
"lint-staged": "13.1.2",
32
"markdownlint-cli2": "0.6.0",
33
"markdownlint-rule-search-replace": "1.0.9",
34
"prettier": "2.8.4"
35
}
36
}
37
38