-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.18 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"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": "eslint --cache .",
"lint:css": "stylelint --ignore-path .gitignore --cache '**/*.styl'",
"lint:pug": "pug-lint .",
"format": "concurrently 'yarn:format:*'",
"format:js": "yarn lint:js --fix",
"format:css": "yarn lint:css --fix"
},
"dependencies": {
"@realfavicongenerator/generate-favicon": "0.8.4",
"@realfavicongenerator/image-adapter-node": "0.8.4",
"any-newer-files": "0.0.4",
"async": "3.2.6",
"autoprefixer-stylus": "1.0.0",
"browser-sync": "3.0.4",
"clean-css": "5.3.3",
"configury": "0.3.0",
"front-matter": "4.0.2",
"fs-extra": "11.3.6",
"glob": "13.0.6",
"html-minifier": "4.0.0",
"jstransformer-uglify-js": "1.2.0",
"lodash.merge": "4.6.2",
"mkdirp": "3.0.1",
"moment": "2.30.1",
"namp": "0.2.26",
"pug": "3.0.4",
"stylus": "0.64.0",
"stylus-mixins": "0.4.0",
"stylus-renderer": "1.1.0"
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@newhighsco/commitlint-config": "1.3.4",
"@newhighsco/editor-config": "1.2.0",
"@newhighsco/eslint-config": "7.1.18",
"@newhighsco/lint-staged-config": "1.1.0",
"@newhighsco/prettier-config": "2.3.12",
"concurrently": "10.0.3",
"eslint": "10.6.0",
"husky": "9.1.7",
"jest": "30.4.2",
"lint-staged": "17.0.8",
"pliers": "1.2.1",
"pliers-imagemin": "3.0.2",
"prettier": "3.9.5",
"pug-lint": "2.7.0",
"pug-lint-config-clock": "2.0.0",
"stylelint": "17.14.0",
"stylelint-stylus": "1.0.0"
},
"commitlint": {
"extends": [
"@newhighsco"
]
},
"prettier": "@newhighsco/prettier-config",
"pugLintConfig": {
"extends": "clock",
"validateExtensions": null,
"requireSpaceAfterCodeOperator": [
"=",
"!="
]
},
"stylelint": {
"extends": [
"stylelint-stylus/standard"
]
}
}