-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.92 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
{
"name": "gulp-firestarter-2023",
"version": "1.2.1",
"description": "Gulp starter kit 2023",
"main": "gulpfile.esm.js",
"scripts": {
"caniuse:update": "pnpm dlx browserslist@latest --update-db",
"check-types": "tsc --noEmit",
"dev": "gulp",
"build": "NODE_ENV=production gulp build",
"gulp": "./node_modules/gulp-cli/bin/gulp.js",
"lint:fix": "eslint --fix **/*.ts **/*.js **/*.tsx **/*.jsx --no-error-on-unmatched-pattern",
"ncu": "pnpm dlx npm-check-updates -u",
"ncu:i": "pnpm dlx npm-check-updates -i",
"preinstall": "npx only-allow pnpm",
"preview": "pnpm build && gulp preview"
},
"author": "Martin Alker <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.1"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/register": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-replace": "^5.0.2",
"@ronilaukkarinen/gulp-stylelint": "^14.1.1",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.1.3",
"browser-sync": "^2.29.3",
"cross-spawn": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-changed": "^4.0.3",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-debug": "^4.0.0",
"gulp-exec": "^5.0.0",
"gulp-extname": "^0.2.2",
"gulp-if": "^3.0.0",
"gulp-load-plugins": "^2.0.8",
"gulp-nunjucks-render": "^2.2.3",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"http-server": "^14.1.1",
"js-yaml": "^4.1.0",
"postcss": "^8.4.28",
"postcss-inline-svg": "^6.0.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"rollup": "^3.28.0",
"rollup-cache": "^2.0.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.65.1",
"start-server-and-test": "^2.0.0",
"stylelint": "^15.10.2",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-order": "^6.0.3",
"vinyl-named": "^1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/redpop/gulp-firestarter-2023"
}
}