-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"dependencies": {
"aos": "^2.3.4",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"purgecss": "^6.0.0",
"simple-jekyll-search": "^1.10.0",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@fullhuman/postcss-purgecss": "^6.0.0",
"cypress": "^13.15.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2"
},
"scripts": {
"stylelint": "npx stylelint \"**/*.css\" -c \"./.stylelintrc.json\" -i \"./.stylelintignore\" ",
"purgecss": "purgecss --css _site/assets/css/output.css --content _site/**/*.css --output _site/assets/css/",
"build": "bundle exec jekyll build --watch",
"cypress": "npx cypress open",
"test": "mocha",
"eslint": "npx eslint",
"serve": "bundle exec jekyll build && bundle exec jekyll serve",
"prepare": "husky && husky install"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix"
}
}