-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.95 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": "gcdrb",
"version": "1.2.1",
"description": "GC Digital Research Bootcamp",
"homepage": "http://gcdigitalfellows.github.io",
"author": {
"name": "GC Digital Fellows",
"email": "[email protected]"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/gcdigitalfellows/gcdrb.git"
},
"jekyll_dir": "_site",
"sass_includes": "bower_components/bootstrap/scss",
"devDependencies": {
"autoprefixer": "^6.3.5",
"babel-core": "^6.7.4",
"babel-eslint": "^4.1.4",
"babel-preset-es2015": "^6.6.0",
"babyparse": "^0.4.5",
"bower": "^1.7.4",
"browser-sync": "^2.11.2",
"browserify": "^13.0.0",
"buildify": "^0.4.0",
"command-exists": "~> 1.2.4",
"copyfiles": "^0.2.1",
"css-mqpacker": "^4.0.1",
"csswring": "^4.2.2",
"del": "^2.2.0",
"escape-html": "^1.0.3",
"eslint": "~> 4.18.2",
"eslint-config-xo": "^0.7.1",
"eslint-config-xo-space": "^0.6.1",
"fs-extra": "^0.26.7",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-cache": "^0.4.3",
"gulp-concat": "^2.6.0",
"gulp-gzip": "^1.2.0",
"gulp-if": "^2.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-newer": "^1.1.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"imagemin": "^4.0.0",
"imagemin-cli": "^2.1.0",
"js-yaml": "^3.5.5",
"kid_process": "^0.5.4",
"livereload": "^0.4.1",
"mkdirp": "^0.5.1",
"node-sass": ">=4.13.1",
"parallelshell": "^2.0.0",
"plumber": "^0.4.8",
"request": "^2.69.0",
"rimraf": "^2.5.2",
"stream-series": "^0.1.1",
"uglify-js": "^2.6.2",
"watchify": "^3.7.0",
"yargs": "^4.3.2"
},
"scripts": {
"clean": "rimraf $npm_package_jekyll_dir; rimraf js/*.min.js; rimraf css/*.css",
"data": "node get_data.js",
"preassets": "npm run clean",
"assets": "npm run scripts && npm run styles && npm run data && npm run assets:vendor",
"assets:vendor": "node build_vendor.js",
"lint:js": "eslint js/main.js",
"lint:sass": "sass-lint css/style.scss",
"scripts": "browserify js/main.js | uglifyjs -o js/main.min.js",
"styles": "node-sass --output-style compressed --source-map=true --include-path $npm_package_sass_includes --follow -o css _sass/style.scss css/style.min.css",
"watch:styles": "node-sass -w --output-style compressed --include-path $npm_package_sass_includes --follow _sass/style.scss -o css",
"watch:scripts": "watchify js/main.js -o 'uglifyjs -cm > js/main.min.js'",
"jekyll:build": "bundle exec jekyll build",
"jekyll:serve": "bundle exec jekyll serve --port 9090",
"livereload": "livereload $npm_package_jekyll_dir -p 9091",
"serve": "npm run assets && parallelshell \"npm run jekyll:serve\" \"npm run watch:scripts\" \"npm run watch:styles\" \"npm run livereload\"",
"start": "npm run serve"
}
}