-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "yari",
"version": "0.0.0",
"description": "Meta package applicable to all packages",
"repository": "https://github.com/mdn/yari",
"author": "MDN Web Docs",
"license": "MPL-2.0",
"scripts": {
"prettier-check": "prettier --check '**/*.{js,ts,tsx,json,scss,html}'",
"prettier-format": "prettier --write '**/*.{js,ts,tsx,json,scss,html}'",
"test": "yarn prettier-check && yarn workspace client test",
"build:stumptown": "cd ${STUMPTOWN_CONTENT_ROOT:-stumptown} && npm run build-json",
"build:client": "yarn workspace client build",
"build:ssr": "yarn workspace ssr build",
"prebuild": "yarn build:client && yarn build:ssr",
"build": "cross-env NODE_ENV=production yarn workspace build start",
"start": "yarn build:client && yarn build:ssr && nf start",
"start:functional": "cross-env ENV_FILE=testing/.env yarn run prebuild && nf -e testing/.env start",
"start:staticserver": "cross-env ENV_FILE=testing/.env node server/static.js"
},
"private": true,
"workspaces": [
"build",
"client",
"content",
"import",
"kumascript",
"ssr",
"server",
"testing"
],
"devDependencies": {
"foreman": "3.0.1",
"husky": "4.2.5",
"prettier": "2.0.5",
"pretty-quick": "2.0.1"
},
"dependencies": {
"cross-env": "^7.0.2"
},
"resolutions": {
"braces": ">=2.3.1",
"fstream": ">=1.0.12",
"js-yaml": ">=3.13.1",
"lodash": ">=4.17.15",
"mixin-deep": ">=1.3.2",
"set-value": ">=2.0.1",
"tar": ">=4.4.9",
"handlebars": ">=4.5.3"
},
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn install --ignore-scripts"
}
}
}