-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
{
"name": "opensource.saucelabs.com",
"homepage": "https://opensource.saucelabs.com",
"version": "0.0.0",
"description": "Open Source Program Office website",
"scripts": {
"build": "run-s sass build:production",
"build:production": "hugo --minify",
"build:netlify": "run-s sass && hugo --minify --baseURL $DEPLOY_PRIME_URL",
"clean": "rm -rf content data public resources ./assets/css",
"lint": "run-p lint:*",
"lint:sass": "sass-lint -c .sass-lint.yml",
"lint:eslint": "eslint .",
"format": "eslint --fix .",
"sass": "mkdir -p ./assets/css && sass ./static/sass/style.scss:./assets/css/style.css",
"start": "run-p start:*",
"start:hugo": "hugo server -p 8080",
"start:sass": "npm run sass -- --watch",
"start:open": "open http://localhost:8080",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saucelabs/opensource.saucelabs.com.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/saucelabs/opensource.saucelabs.com/issues"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-spellcheck": "^0.0.19",
"eslint-plugin-toml": "^0.3.0",
"eslint-plugin-yml": "^0.12.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-toml": "^0.3.1",
"replace-in-files-cli": "^2.0.0",
"sass": "^1.26.7",
"sass-lint": "^1.13.1"
},
"lint-staged": {
"*.{yaml,yml,toml,js,md}": [
"eslint --fix"
]
},
"engines": {
"node": ">=12"
},
"private": true,
"prettier": {
"singleQuote": true,
"overrides": [
{
"files": "*.{yaml,yml,toml}",
"options": {
"singleQuote": false
}
}
]
}
}