-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 3.1 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
{
"name": "frontenso-11ty-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm-run-all clean gulp:svg -p dev:*",
"gulp:svg": "gulp svg",
"gulp:styles": "gulp styles",
"dev:gulp": "gulp",
"dev:eleventy": "eleventy --serve --port=9000",
"dev:webpack": "webpack --watch",
"build": "cross-env NODE_ENV=production npm-run-all -s clean gulp:svg build-webpack build-eleventy gulp:styles beautify-html",
"build:gulp": "gulp production",
"build-eleventy": "eleventy",
"build-webpack": "webpack",
"clean": "rimraf dist/",
"zip": "cross-env NODE_ENV=production npm run build && gulp zip",
"format": "pretty-quick --staged",
"lint:css": "stylelint --fix \"src/**/*.{scss,sass}\"",
"lint:js": "eslint --max-warnings 0 \"src/**/*.{jsx,js}\"",
"pre-commit": "npm-run-all format --parallel lint:*",
"beautify-html": "prettier --write dist/**/*.html",
"optimize-png": "node scripts/optimize-png.js",
"validate:ci": "npm-run-all --parallel lint:*"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"author": "einomi",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.6",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.26.0",
"@frontenso/eslint-config-javascript": "^0.1.9",
"@fullhuman/postcss-purgecss": "^4.0.2",
"ansi-colors": "^4.1.1",
"assets": "^3.0.1",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.4.1",
"babel-plugin-module-resolver": "^4.1.0",
"chalk": "^4.1.0",
"core-js": "^3.30.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"es5-ext": "^0.10.53",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.6.0",
"eslint-plugin-unicorn": "^28.0.2",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-cheerio": "^1.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-dart-sass": "^1.0.2",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgmin": "^3.0.0",
"gulp-svgstore": "^7.0.1",
"gulp-watch": "^5.0.1",
"gulp-zip": "^5.0.2",
"image-size": "^0.9.4",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"node-notifier": "^9.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"postcss-assets": "^5.0.0",
"prettier": "^3.4.2",
"rimraf": "^3.0.2",
"stylelint": "^13.11.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.19.0",
"tailwindcss": "^2.2.19",
"through2": "^4.0.2",
"webpack": "^5.97.1",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"husky": "4.3.8",
"pretty-quick": "^4.0.0"
}
}