-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
114 lines (114 loc) · 3.8 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "frasco",
"version": "1.1.0",
"description": "Quick starter for Jekyll including full setup for Sass, PostCSS, Autoprefixer, stylelint, Webpack, ESLint, imagemin, Browsersync, etc.",
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"config": {
"browsersync": {
"port": 4000
},
"image": {
"src": "assets/_src/images",
"dist": "assets/images"
},
"js": {
"entry": "assets/_src/js/bundle.js",
"output": "assets/js/bundle.js"
},
"css": {
"src": "assets/_src/sass",
"dist": "assets/css",
"style": "compressed",
"map": "--map"
},
"jekyll": {
"config": {
"default": "_config.yml",
"development": "_config.dev.yml",
"production": "_config.prod.yml"
}
}
},
"scripts": {
"preinstall": "bundle install",
"dev": "npm-run-all -p imagemin sass webpack -s jekyll:development -p browser watch",
"build": "npm-run-all -p imagemin sass webpack -s jekyll:production",
"browser": "cross-conf-env browser-sync \"_site\" -f \"_site\" --port $npm_package_config_browsersync_port",
"jekyll": "bundle exec jekyll build",
"jekyll:development": "cross-conf-env npm run jekyll -- --config $npm_package_config_jekyll_config_default,$npm_package_config_jekyll_config_development",
"jekyll:production": "npm run jekyll",
"imagemin": "cross-conf-env node imagemin \"$npm_package_config_image_src/**/*\" $npm_package_config_image_dist",
"presass": "cross-conf-env stylelint \"$npm_package_config_css_src/**/*\" --fix",
"sass": "cross-conf-env sass $npm_package_config_css_src:$npm_package_config_css_dist --style=compressed",
"postsass": "cross-conf-env postcss $npm_package_config_css_dist/*.css --use=autoprefixer --dir=$npm_package_config_css_dist $npm_package_config_css_map",
"webpack": "cross-conf-env webpack $npm_package_config_js_entry -o $npm_package_config_js_output",
"watch:imagemin": "cross-conf-env onchange \"$npm_package_config_image_src/**/*\" -e \".DS_Store\" -- npm run imagemin",
"watch:jekyll": "npm run jekyll:development -- -w",
"watch:sass": "cross-conf-env onchange \"$npm_package_config_css_src/**/*\" -e \".DS_Store\" -- npm run sass",
"watch:webpack": "npm run webpack -- --watch",
"watch": "run-p watch:*"
},
"repository": {
"type": "git",
"url": "https://github.com/ixkaito/frasco.git"
},
"keywords": [
"Jekyll",
"Browsersync",
"Sass",
"PostCSS",
"Autoprefixer",
"imagemin",
"Webpack",
"stylelint",
"ESLint"
],
"author": "Kite",
"license": "MIT",
"bugs": {
"url": "https://github.com/ixkaito/frasco/issues"
},
"homepage": "https://ixkaito.github.io/frasco",
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.9.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@ixkaito/imagemin": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"cross-conf-env": "^1.2.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-loader": "^3.0.3",
"globby": "^11.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^6.0.0",
"imagemin-optipng": "^7.1.0",
"imagemin-svgo": "^7.1.0",
"mini-css-extract-plugin": "^1.6.0",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"postcss-cli": "^7.1.0",
"postcss-loader": "^3.0.0",
"sass": "^1.26.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"stylelint": "^13.2.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^5.40.0",
"webpack-cli": "^3.3.11"
}
}