-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.71 KB
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
{
"name": "hashlabs.github.io",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:hashlabs/hashlabs.github.io.git",
"author": "Hash Labs <contact@hashlabs.com>",
"license": "MIT",
"deploy": "yarn deploy-production",
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"bootstrap": "4.0.0-alpha.6"
},
"scripts": {
"build-development": "yarn optimize-images && webpack && yarn jekyll-build-development && webpack && yarn post-build",
"build-production": "yarn optimize-images && webpack && yarn jekyll-build-production && webpack --env.prod && yarn post-build",
"build-staging": "yarn optimize-images && webpack && yarn jekyll-build-staging && webpack --env.prod && yarn post-build",
"copy-main-styles": "rm _site/assets/css/main.css && cp assets/css/main.css _site/assets/css/main.css",
"copy-service-worker": "rm _site/service-worker.js && cp service-worker.js _site/service-worker.js",
"deploy-production": "yarn build-production && yarn upload-gh-pages",
"deploy": "yarn build-staging && firebase deploy",
"jekyll-build-development": "JEKYLL_ENV=development jekyll build --config _config.yml,_config.development.yml",
"jekyll-build-production": "JEKYLL_ENV=production jekyll build --config _config.yml,_config.production.yml",
"jekyll-build-staging": "JEKYLL_ENV=staging jekyll build --config _config.yml,_config.staging.yml",
"optimize-images": "babel-node _utilities/images.js",
"post-build": "yarn copy-service-worker && yarn copy-main-styles",
"serve": "JEKYLL_ENV=development jekyll serve --config _config.yml,_config.development.yml",
"upload-gh-pages": "sh _utilities/deploy-gh-pages.sh",
"watch": "yarn optimize-images && webpack --watch"
},
"devDependencies": {
"async-file": "^2.0.2",
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.2",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"fs-extra": "^4.0.1",
"glob-all": "^3.1.0",
"ignore-loader": "^0.1.2",
"imagemin-webpack-plugin": "^1.5.0-beta.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^1.3.2",
"postcss-loader": "^2.0.6",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.5",
"sharp": "^0.18.2",
"style-loader": "^0.18.1",
"sw-precache-webpack-plugin": "^0.11.4",
"uglify-js": "^3.0.10",
"uglifyjs-webpack-plugin": "^0.4.3",
"url-loader": "^0.5.8",
"webpack": "^2.5.1"
}
}