This repository has been archived by the owner on Jun 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "webpack-frontline",
"version": "0.2.4",
"description": "A fork of webpack-deploy: A Collection of useful utilities for deploying (not only) Webpack apps",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/policygenius/webpack-frontline.git"
},
"keywords": [
"webpack",
"deploy",
"build",
"s3",
"slack"
],
"author": "Tomas Ruzicka & Patrick Kim",
"license": "MIT",
"bugs": {
"url": "https://github.com/policygenius/webpack-frontline/issues"
},
"homepage": "https://github.com/policygenius/webpack-frontline#readme",
"bin": {
"deploy-frontline": "bin/deploy-frontline",
"slack-notify": "bin/slack-notify",
"deploy-s3": "bin/deploy-s3",
"deploy-gcloud": "bin/deploy-gcloud"
},
"scripts": {
"build": "./node_modules/.bin/gulp clean && ./node_modules/.bin/gulp webpack",
"s3": "./node_modules/.bin/gulp deploy-s3",
"gcloud": "./node_modules/.bin/gulp deploy-gcloud",
"lint": "./node_modules/.bin/eslint --config .eslintrc.json tasks"
},
"dependencies": {
"async": "^1.4.2",
"autoprefixer-core": "^5.2.1",
"bluebird": "^3.5.0",
"fullname": "^3.0.0",
"git-rev-promises": "^1.0.8",
"gitlog": "^2.0.1",
"glob": "^7.1.2",
"gulp": "^4.0.0",
"gulp-awspublish": "^2.0.2",
"gulp-clean": "^0.3.1",
"gulp-filter": "^5.0.1",
"gulp-gcloud-publish": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-svgmin": "^1.2.0",
"gulp-svgstore": "^5.0.4",
"gulp-tap": "^1.0.1",
"gulp-util": "^3.0.6",
"gulp-webpack": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"object-assign": "^4.0.1",
"promise-redis": "^0.0.5",
"redis": "^0.12.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.4",
"require-dir": "^0.3.2",
"webpack": "^1.11.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.14.0",
"prettier": "^1.4.4"
}
}