-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.63 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "benedfit.com",
"version": "3.0.0",
"description": "Personal website of Ben Edwards, a Web Designer and Developer",
"private": true,
"scripts": {
"prepare": "husky",
"start": "pliers go -o",
"build": "pliers build",
"pretest": "yarn lint",
"test": "jest --coverage",
"lint": "concurrently yarn:lint:*",
"lint:js": "yarn lint-staged:js --cache .",
"lint:css": "yarn lint-staged:css --cache '**/*.styl'",
"lint:pug": "yarn lint-staged:pug .",
"lint-staged:js": "eslint --ignore-path .gitignore",
"lint-staged:css": "stylelint --ignore-path .gitignore",
"lint-staged:pug": "pug-lint",
"format": "concurrently yarn:format:*",
"format:js": "yarn lint:js --fix",
"format:css": "yarn lint:css --fix"
},
"dependencies": {
"any-newer-files": "0.0.4",
"async": "3.2.6",
"autoprefixer-stylus": "1.0.0",
"browser-sync": "3.0.3",
"clean-css": "5.3.3",
"configury": "0.3.0",
"front-matter": "4.0.2",
"fs-extra": "11.2.0",
"glob": "11.0.0",
"html-minifier": "4.0.0",
"jstransformer-uglify-js": "1.2.0",
"jstransformer-verbatim": "1.1.1",
"lodash.merge": "4.6.2",
"mkdirp": "3.0.1",
"moment": "2.30.1",
"namp": "0.2.26",
"pug": "3.0.3",
"rfg-api": "0.5.3",
"stylus": "0.64.0",
"stylus-mixins": "0.4.0",
"stylus-renderer": "1.1.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@newhighsco/commitlint-config": "1.1.43",
"@newhighsco/editor-config": "1.2.0",
"@newhighsco/eslint-config": "4.0.235",
"@newhighsco/prettier-config": "2.1.26",
"concurrently": "9.1.0",
"eslint": "8.57.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"pliers": "1.2.1",
"pliers-imagemin": "3.0.2",
"prettier": "3.3.3",
"pug-lint": "2.7.0",
"pug-lint-config-clock": "2.0.0",
"stylelint": "16.10.0",
"stylelint-stylus": "1.0.0"
},
"commitlint": {
"extends": [
"@newhighsco"
]
},
"eslintConfig": {
"extends": [
"@newhighsco"
]
},
"lint-staged": {
"*.{js?(on)}": "yarn lint-staged:js --fix",
"*.css": "yarn lint-staged:css --fix",
"*.pug": "yarn lint-staged:pug"
},
"prettier": "@newhighsco/prettier-config",
"pugLintConfig": {
"extends": "clock",
"validateExtensions": null,
"requireSpaceAfterCodeOperator": [
"=",
"!="
]
},
"renovate": {
"extends": [
"local>newhighsco/.github:renovate-config"
],
"baseBranches": [
"main"
],
"reviewers": [
"@benedfit"
]
},
"stylelint": {
"extends": [
"stylelint-stylus/standard"
]
}
}