-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 5.16 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "jumpline",
"version": "4.4.0",
"description": "An SMS paging API and web client",
"engines": {
"node": ">=4.4.4 <5",
"npm": ">=3.5.2 <4"
},
"keywords": [
"sms",
"paging",
"waitlist"
],
"dependencies": {
"assets-webpack-plugin": "^3.4.0",
"autoprefixer": "^6.3.6",
"babel-core": "^6.4.0",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.1",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.4.3",
"bluebird": "^3.4.0",
"boom": "^3.1.1",
"bootstrap-loader": "^1.0.10",
"bootstrap-sass": "^3.3.6",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^3.0.0",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"eventsource-polyfill": "^0.9.6",
"file-loader": "^0.8.5",
"good": "^7.0.1",
"good-console": "^6.1.1",
"good-squeeze": "^3.0.1",
"googleapis": "^8.0.0",
"hapi": "^13.0.0",
"hapi-react-views": "^7.0.0",
"hapi-webpack-plugin": "^1.3.0",
"immutable": "^3.7.6",
"inert": "^4.0.0",
"joi": "^8.0.1",
"jquery": "^2.2.4",
"json-loader": "^0.5.4",
"key-mirror": "^1.0.1",
"material-ui": "^0.15.0",
"node-sass": "^3.4.2",
"offline-plugin": "^3.2.1",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.0.6",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.0",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.0.5",
"redux-thunk": "^2.1.0",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"superagent": "^1.2.0",
"url-loader": "^0.5.7",
"vision": "^4.0.1",
"webpack": "^1.12.11"
},
"scripts": {
"build": "NODE_ENV=production webpack -p --config src/config/webpack.babel.js",
"build-dev": "NODE_ENV=development rimraf build && webpack --colors --config src/config/webpack.babel.js",
"build-staging": "npm run compose-staging -- build jumpline",
"build-staging-no-cache": "npm run compose-staging -- build --no-cache jumpline-a jumpline-b",
"clean-images": "docker rmi -f $(docker images | grep '<none>' | awk '{ print $3; }')",
"compose-prod": "docker-compose -f docker/production.yml",
"compose-staging": "docker-compose -f docker/staging.yml",
"debug": "node debug src/index.server.babel.js",
"deploy-dev": "docker-compose -f docker/development.yml build && docker-compose -f docker/development.yml up",
"deploy-staging": "npm run build-staging && npm run compose-staging -- up -d lb logspout jumpline-a jumpline-b",
"dev": "npm run start-dev",
"docker-build": "npm run build-staging && npm run docker-tag && npm run docker-login && npm run docker-push",
"docker-tag": ". .env && docker tag jumpline:$(npm run --silent echo-version) us.gcr.io/${GOOGLE_PROJECT_ID}/jumpline:$(npm run --silent echo-version)",
"docker-login": "docker login -e none -u oauth2accesstoken -p \"$(gcloud auth print-access-token)\" https://us.gcr.io",
"docker-push": ". .env && gcloud docker push us.gcr.io/${GOOGLE_PROJECT_ID}/jumpline:$(npm run --silent echo-version)",
"echo-version": "echo ${npm_config_tag_version_prefix}${npm_package_version}",
"flow": "flow",
"lint": "eslint --ignore-pattern **/bundle-*.js --ext .js,.jsx src/**",
"logs": "npm run compose-staging -- logs -f --tail=20",
"postinstall": "npm run build",
"start": "node src/index.server.babel.js",
"start-dev": "concurrently 'npm run build-dev -- --watch' 'nodemon -w src/handlers/ -w src/config/ -w src/index.server.js -x npm run --silent start'",
"test": "lab -v -P '_test' -T node_modules/lab-babel -I __core-js_shared__ -t 97 src",
"up-a": "npm run compose-staging -- up -d --force-recreate jumpline-a && npm run logs -- jumpline-a",
"up-b": "npm run compose-staging -- up -d --force-recreate jumpline-b && npm run logs -- jumpline-b",
"up-staging": "npm run compose-staging -- up -d --force-recreate",
"build-a": "npm run compose-staging -- build --no-cache jumpline-a",
"watch": "nodemon -w src/config/ -w src/controllers/ -w src/helpers/ -w src/models/ -w src/index.server.babel.js -e js -x npm run dev",
"watch-test": "nodemon -w src/ -e js,jsx -x npm run --silent test"
},
"main": "src/index.server.babel.js",
"repository": {
"type": "git",
"url": "https://github.com/triconn/jumpline.git"
},
"author": "triconn",
"license": "Apache-2.0",
"devDependencies": {
"browser-sync": "^2.9.3",
"browser-sync-webpack-plugin": "^1.0.0",
"code": "^3.0.0",
"concurrently": "^2.1.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-standard": "^5.1.0",
"eslint-config-tribou": "^1.1.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^5.0.1",
"eslint-plugin-standard": "^1.3.2",
"flow-bin": "^0.27.0",
"lab": "^10.6.1",
"lab-babel": "^1.1.1",
"npm-install-webpack-plugin": "^4.0.0",
"nodemon": "^1.3.7"
}
}