-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "boilerplate",
"version": "1.3.0",
"description": "A boilerplate for building web projects with Gulp.js.",
"author": "Tanju Yildiz <[email protected]>",
"license": "MIT",
"keywords": [
"boilerplate",
"gulp.js",
"html",
"css",
"javascript"
],
"main": "gulpfile.js",
"scripts": {
"start": "gulp",
"clean": "gulp clean",
"dev": "npm run clean && npm run start",
"build": "gulp build",
"archive": "npm run clean && npm run build && gulp archive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mavisland/boilerplate.git"
},
"homepage": "https://github.com/mavisland/boilerplate",
"bugs": {
"url": "https://github.com/mavisland/boilerplate/issues"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"autoprefixer": "^10.4.8",
"browser-sync": "^2.27.10",
"cross-env": "^7.0.3",
"cssnano": "^5.1.13",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-data": "^1.3.1",
"gulp-header": "^2.0.9",
"gulp-if": "^3.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"gulp-twig": "^1.2.0",
"gulp-zip": "^5.1.0",
"postcss": "^8.4.16",
"postcss-import": "^14.1.0",
"stylelint": "^14.10.0",
"stylelint-config-standard": "^27.0.0",
"tailwindcss": "^3.1.8"
}
}