forked from mdn/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 849 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "content",
"version": "1.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"up-to-date-check": "node scripts/up-to-date-check.js",
"start": "yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files REACT_APP_DISABLE_AUTH=true BUILD_OUT_ROOT=build node node_modules/@mdn/yari/server",
"filecheck": "env-cmd --silent cross-env CONTENT_ROOT=files node node_modules/@mdn/yari/filecheck/cli.js --cwd=.",
"content": "env-cmd --silent cross-env CONTENT_ROOT=files node node_modules/@mdn/yari/tool/cli.js",
"build": "env-cmd --silent cross-env CONTENT_ROOT=files BUILD_OUT_ROOT=build node node_modules/@mdn/yari/build/cli.js"
},
"dependencies": {
"@mdn/yari": "0.6.67",
"cross-env": "7.0.3",
"env-cmd": "10.1.0"
}
}