This repository has been archived by the owner on Sep 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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": "boilerplate-gulp-browserify",
"version": "0.0.1",
"description": "Boilerplate using Gulp and Browserify",
"dependencies": {
"canvid": "^1.3.2",
"fastclick": "^1.0.6",
"handlebars": "^4.0.3",
"jquery": "^2.1.4",
"marked": "^0.3.5",
"outdated-browser-rework": "^1.0.0",
"parse": "^1.6.9"
},
"devDependencies": {
"aliasify": "^1.7.2",
"autoprefixer": "^6.0.2",
"babelify": "^6.3.0",
"browser-sync": "^2.9.8",
"browserify": "^11.1.0",
"browserify-shim": "^3.8.10",
"del": "^2.0.2",
"gulp": "^3.9.1",
"gulp-concat": "^2.5.2",
"gulp-file-include": "*",
"gulp-if": "*",
"gulp-imagemin": "^5.0.3",
"gulp-jshint": "*",
"gulp-minify-css": "^1.0.0",
"gulp-mocha": "*",
"gulp-notify": "*",
"gulp-postcss": "*",
"gulp-sass": "^2.0.4",
"gulp-sequence": "^0.3.2",
"gulp-shell": "^0.4.0",
"gulp-sourcemaps": "^1.5.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"gulp-webp": "^3.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"imagemin-webp": "^5.0.0",
"jshint": "2.9.1-rc3",
"jshint-stylish": "*",
"magnific-popup": "*",
"markdown": "*",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "*",
"yargs": "*"
},
"browserify": {
"transform": [
"aliasify"
]
},
"aliasify": {
"aliases": {
"modules": "./src/js/modules",
"vendor": "./src/js/vendor"
}
},
"scripts": {
"watch": "gulp",
"build": "gulp build",
"production": "gulp build --production"
}
}