forked from mdn/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.05 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
{
"name": "content",
"version": "1.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "env-cmd --silent cross-env CONTENT_ROOT=files BUILD_OUT_ROOT=build yari-build",
"content": "env-cmd --silent cross-env CONTENT_ROOT=files yari-tool",
"filecheck": "env-cmd --silent cross-env CONTENT_ROOT=files yari-filecheck --cwd=.",
"fix:json": "prettier -w \"**/*.json\"",
"fix:md": "npm run lint:md -- --fix",
"fix:yml": "prettier -w \"**/*.yml\"",
"lint:json": "prettier -c \"**/*.json\"",
"lint:md": "markdownlint \"**/*.md\" -i node_modules",
"lint:yml": "prettier -c \"**/*.yml\"",
"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",
"up-to-date-check": "node scripts/up-to-date-check.js"
},
"dependencies": {
"@mdn/yari": "1.18.3",
"cross-env": "7.0.3",
"env-cmd": "10.1.0",
"markdownlint-cli": "0.32.2",
"prettier": "2.7.1"
}
}