-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "gulpstrap",
"version": "2.0.0",
"description": "Generate your static website with Bootstrap 5.3, FontAwesome 7, jQuery, and Popper included. Very nice for prototyping. Supports multiple theme styling.",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git@github.com:vr1e/gulpstrap.git"
},
"engines": {
"node": "22"
},
"scripts": {
"start": "gulp",
"dev": "gulp",
"build": "NODE_ENV=production gulp build",
"clean": "rm -rf dist",
"format": "prettier --write 'src/**/*.{js,scss,html,json}' 'gulpfile.js' 'gulp.constants.js'",
"create-theme": "node scripts/create-theme.js"
},
"devDependencies": {
"browser-sync": "^3.0.4",
"gulp": "^5.0.1",
"gulp-autoprefixer": "^10.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^9.1.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.1.0",
"gulp-rev": "^11.0.0",
"gulp-rev-rewrite": "^6.0.0",
"gulp-sass": "^6.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"prettier": "^3.6.2",
"sass": "^1.93.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8",
"jquery": "^3.7.1"
},
"browserslist": [
"last 2 versions",
"> 0.5%",
"not dead"
]
}