This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.47 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
{
"name": "@productboard/webpack-deploy",
"version": "0.15.0",
"description": "Collection of useful utilities for deploying (not only) Webpack apps",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/productboard/webpack-deploy.git"
},
"keywords": [
"webpack",
"deploy",
"build",
"s3",
"redis",
"slack"
],
"author": "Tomas Ruzicka",
"license": "MIT",
"bugs": {
"url": "https://github.com/productboard/webpack-deploy/issues"
},
"homepage": "https://github.com/productboard/webpack-deploy#readme",
"bin": {
"deploy": "bin/deploy.sh",
"activate-rev": "bin/activate-rev",
"current-rev": "bin/current-rev",
"list-revs": "bin/list-revs",
"slack-notify": "bin/slack-notify",
"deploy-redis": "bin/deploy-redis",
"deploy-s3": "bin/deploy-s3",
"rollbar-source-map": "bin/rollbar-source-map",
"git-deploy-tag": "bin/git-deploy-tag",
"list-active-rev": "bin/list-active-rev"
},
"scripts": {
"build": "./node_modules/.bin/gulp clean && ./node_modules/.bin/gulp webpack",
"s3": "./node_modules/.bin/gulp deploy-s3 && ./node_modules/.bin/gulp rollbar-source-map --hash=`ls dist/assets/main-*.js 2>/dev/null | cut -f3 -d'/' | cut -f2 -d'-' | cut -f1 -d'.'`",
"redis": "./node_modules/.bin/gulp deploy-redis && ./node_modules/.bin/gulp activate-rev",
"deploy": "npm run s3 & npm run redis & wait",
"lint": "./node_modules/.bin/eslint --config .eslintrc.json tasks"
},
"engines": {
"npm": ">= 8"
},
"dependencies": {
"async": "^2.6.1",
"autoprefixer-core": "^6.0.1",
"bluebird": "^3.5.3",
"fullname": "^3.0.0",
"git-rev-promises": "^1.0.8",
"gitlog": "3.3.6",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-awspublish": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-if": "^2.0.2",
"gulp-rename": "^1.2.2",
"gulp-svgmin": "^2.1.0",
"gulp-svgstore": "^7.0.1",
"gulp-util": "^3.0.6",
"gulp-webpack": "^1.5.0",
"gzip-size": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"object-assign": "^4.0.1",
"promise-redis": "^0.0.5",
"redis": "^2.8.0",
"request": "^2.61.0",
"request-promise-native": "^1.0.5",
"require-dir": "^1.2.0",
"superagent": "^5.0.2",
"webpack": "^1.11.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.0",
"prettier": "^1.15.3"
}
}