-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.21 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
83
84
85
{
"name": "minel-jekyll-theme",
"version": "1.0.0",
"description": "minel is jekyll theme for personal website",
"main": "gulpfile.js",
"private": false,
"scripts": {
"start": "JEKYLL_ENV=development npx gulp",
"start:dev": "gulp --noserviceworker",
"build": "JEKYLL_ENV=production npx gulp build_prod",
"deploy": "npx vercel --prod",
"setup": "npm install && bundle install",
"lint": "eslint '_assets/js/**/*.js'",
"prettier": "prettier '_assets/js/**/*.js' --write",
"lint:nofix": "eslint && npm run prettier",
"prettier:write": "prettier '*.config.js' '*/_assets/scripts/**/*.js' --write"
},
"author": "yuceltoluyag",
"license": "ISC",
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "avoid"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"dependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@babel/register": "7.24.6",
"broken-link-checker": "0.7.8",
"browser-sync": "3.0.2",
"chalk": "5.4.1",
"del": "7.1.0",
"dotenv": "16.4.5",
"eslint": "9.21.0",
"gulp": "4.0.2",
"gulp-awspublish": "8.0.0",
"gulp-babel": "8.0.0",
"gulp-cssnano": "2.1.3",
"gulp-debug": "5.0.1",
"gulp-duration": "0.0.0",
"gulp-htmlmin": "5.0.1",
"gulp-imagemin": "7.1.0",
"gulp-inline-source": "4.0.0",
"gulp-less": "5.0.0",
"gulp-plumber": "1.2.1",
"gulp-rename": "2.0.0",
"gulp-sass": "^6.0.0",
"gulp-size": "5.0.0",
"gulp-sourcemaps": "3.0.0",
"gulp-terser": "2.1.0",
"gulp-webp": "^4.0.1",
"imagemin-webp": "^8.0.0",
"jsdom": "24.1.1",
"lodash.merge": "4.6.2",
"mkdirp": "3.0.1",
"nodemon": "3.1.4",
"sync-request": "6.1.0",
"yargs": "17.7.2"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"gulp-postcss": "^10.0.0",
"postcss": "^8.5.3",
"postcss-preset-env": "^10.1.6",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.11.1"
}
}