-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 2.55 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
{
"name": "todo-jekicker",
"version": "0.0.1",
"description": "Description for jekicker TODO",
"author": {
"name": "Haythem OUEDERNI",
"email": "haythem.ouederni@gmail.com",
"url": "https://haythem-ouederni.github.io/"
},
"license": "Apache-2.0",
"cacheDirectories": [
"_assets/node_modules"
],
"dependencies": {
"bootstrap": "4.0.0-beta.2",
"jquery": "^3.2.1",
"popper.js": "1.12.9"
},
"devDependencies": {
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-flatten": "^0.3.1",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rev": "^8.1.0",
"gulp-rev-replace": "^0.4.3",
"gulp-sass-lint": "^1.3.4",
"gulp-uglify": "^3.0.0",
"gulp-useref": "^3.1.3",
"lazypipe": "^1.0.1",
"run-sequence": "^2.2.0",
"yargs": "^10.0.3"
},
"engines": {
"node": "> 4.3"
},
"scripts": {
"start": "yarn serve",
"start:windows": "yarn serve:windows",
"serve": "yarn linting && JEKYLL_ENV=development bundle exec jekyll serve --config _config.yml,_config-dev.yml --livereload",
"serve:windows": "yarn linting && set JEKYLL_ENV=development && bundle exec jekyll serve --config _config.yml,_config-dev.yml --livereload",
"serve:network": "yarn linting && JEKYLL_ENV=development bundle exec jekyll serve --config _config.yml,_config-dev.yml --host=your_local_ip_address --livereload",
"serve:network:windows": "yarn linting && set JEKYLL_ENV=development && bundle exec jekyll serve --config _config.yml,_config-dev.yml --host=your_local_ip_address --livereload",
"setup": "bin/setup",
"setup:windows": "./bin/setup.sh",
"build:prod": "yarn linting && gulp clean-input-dir && JEKYLL_ENV=production bundle exec jekyll build && gulp build",
"build:prod:windows": "yarn linting && gulp clean-input-dir && set JEKYLL_ENV=production && bundle exec jekyll build && gulp build",
"build:dev": "yarn linting && gulp clean-input-dir && JEKYLL_ENV=development bundle exec jekyll build --config _config.yml,_config-dev.yml",
"build:dev:windows": "yarn linting && gulp clean-input-dir && set JEKYLL_ENV=development && bundle exec jekyll build --config _config.yml,_config-dev.yml",
"eslint": "gulp eslint",
"eslint:fix": "gulp eslint:fix",
"sasslint": "gulp sasslint",
"linting": "gulp linting"
}
}