-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "starter",
"version": "1.0.0",
"description": "Gulp.js static site starter",
"main": "gulpfile.js",
"scripts": {
"start": "cross-env NODE_ENV=development gulp",
"clean": "gulp clean",
"dev": "npm run clean && npm run start",
"build": "cross-env NODE_ENV=production gulp build",
"sprites": "gulp sprites",
"archive": "npm run clean && npm run build && gulp archive",
"preversion": "npm run clean",
"version": "npm run build",
"postversion": "gulp archive && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mavisland/starter.git"
},
"keywords": [
"starter",
"gulp.js",
"html",
"css",
"javascript"
],
"author": {
"name": "Tanju Yildiz",
"url": "https://tanjuyildiz.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mavisland/starter/issues"
},
"homepage": "https://github.com/mavisland/starter",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"autoprefixer": "^10.4.19",
"browser-sync": "^3.0.2",
"cross-env": "^7.0.3",
"del": "^7.1.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-data": "^1.3.1",
"gulp-header": "^2.0.9",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^9.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"gulp-twig": "^1.2.0",
"gulp-zip": "^6.0.0",
"gulp.spritesmith": "^6.13.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"stylelint": "^16.6.1",
"stylelint-config-twbs-bootstrap": "^14.1.0"
}
}