-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"name": "alecrust.com",
"version": "1.0.0",
"private": true,
"author": "Alec Rust (https://www.alecrust.com/)",
"packageManager": "npm@11.12.1",
"scripts": {
"dev": "webpack serve",
"build": "webpack",
"test": "playwright test",
"lint": "biome lint . && stylelint '**/*.css'",
"format": "biome check --write . && stylelint --fix '**/*.css'",
"prepare": "husky"
},
"browserslist": [
"defaults"
],
"dependencies": {
"normalize.css": "^8.0.1",
"photoswipe": "^5.4.4",
"photoswipe-dynamic-caption-plugin": "^1.2.7"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@biomejs/biome": "2.4.10",
"@playwright/test": "^1.59.1",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^7.0.4",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"image-minimizer-webpack-plugin": "^4.1.4",
"lint-staged": "^16.4.0",
"mini-css-extract-plugin": "^2.10.2",
"postcss": "^8.5.8",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.1",
"postcss-preset-env": "^11.2.0",
"responsive-loader": "^3.1.2",
"sharp": "^0.34.5",
"stylelint": "^16.26.1",
"stylelint-config-suitcss": "^21.0.0",
"stylelint-selector-bem-pattern": "^4.0.1",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"*.css": "stylelint --fix"
}
}