-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.08 KB
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": "rubyforgood.org",
"description": "Contributors are welcome to take on open issues that are marked \"help wanted\"! Please comment on the issue if you need more clarity/information or DM @meg-gutshall on the Ruby for Good Slack.",
"author": "Ruby for Good Team",
"license": "ISC",
"main": "index.js",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rubyforgood/rubyforgood.org.git"
},
"bugs": {
"url": "https://github.com/rubyforgood/rubyforgood.org/issues"
},
"homepage": "https://github.com/rubyforgood/rubyforgood.org#readme",
"scripts": {
"preview": "bundle exec jekyll serve --livereload",
"blog-preview": "bundle exec jekyll serve --drafts --future --livereload",
"build": "bundle exec jekyll build",
"doctor": "bundle exec jekyll doctor",
"rule-check": "stylelint-config-prettier-check",
"prettier": "prettier --write '**/*.{js,css,scss,html,md}'",
"prepare": "husky install"
},
"lint-staged": {
"**/*.css": [
"stylelint --fix",
"prettier --write"
],
"**/*.scss": [
"stylelint --fix",
"prettier --write"
],
"**/*.md": [
"markdownlint-cli2 --fix",
"prettier --write"
],
"**/*.js": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.22.20",
"@fullhuman/postcss-purgecss": "^4.0.3",
"autoprefixer": "^10.4.0",
"cssnano": "^5.0.8",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"markdownlint": "^0.25.1",
"markdownlint-cli2": "^0.18.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-custom-properties": "^12.0.0",
"postcss-nested": "^5.0.6",
"prettier": "^2.4.1",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.0",
"stylelint-config-standard": "^23.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-processor-ignore-front-matter": "^1.0.2"
},
"dependencies": {
"browserslist": "^4.21.11",
"core-js": "^3.17.2"
}
}