forked from StateVoicesNational/Spoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
236 lines (236 loc) · 10.3 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
{
"name": "spoke",
"version": "12.1.0",
"description": "Spoke",
"main": "src/server",
"engines": {
"node": ">=10.17",
"npm": "3.10.10"
},
"scripts": {
"test": "jest --forceExit --runInBand --detectOpenHandles --verbose=false",
"test-cache": "REDIS_FAKE=1 jest --runInBand --forceExit --detectOpenHandles",
"test-rediscache": "REDIS_URL=redis://localhost:6379 CACHE_PREFIX=test jest --runInBand --forceExit --detectOpenHandles",
"test-rediscache-contactcache": "REDIS_URL=redis://localhost:6379 CACHE_PREFIX=test REDIS_CONTACT_CACHE=1 jest --runInBand --forceExit --detectOpenHandles",
"test-cypress": "NODE_ENV=test DB_TYPE=pg DEFAULT_SERVICE=fakeservice SESSION_SECRET=secret DB_NAME=spoke_test DB_USER=spoke_test DB_PASSWORD=spoke_test cypress open",
"test-sqlite": "jest --config jest.config.sqlite.js --runInBand --forceExit --detectOpenHandles",
"test-coverage": "jest --coverage --detectOpenHandles --runInBand",
"test-coverage-bothbackends": "jest --runInBand --config jest.config.sqlite.js -- __test__/backend.test.js && jest --coverage",
"knex": "knex --knexfile ./knexfile.env.js",
"clean": "rm -rf $OUTPUT_DIR",
"lint": "eslint --fix --ext js --ext jsx src",
"process-message-csv": "./dev-tools/babel-run-with-env.js ./src/workers/process-message-csv.js",
"prod-build-client": "webpack --config ./webpack/config.js",
"prod-maybe-build-client": "if [ \"$ASSETS_DIR_PREBUILT\" != \"\" ] ; then npm run install-prebuilt-assets; else npm run prod-build-client; fi",
"prod-build-server": "babel ./src -d ./build/server/ --source-maps --copy-files --ignore \"src/components,src/containers,src/client,src/styles,./src/routes.jsx\"; babel ./migrations -d ./build/server/migrations/ --source-maps --copy-files",
"prod-build": "npm run clean && npm run prod-build-client && npm run prod-build-server",
"prod-static-upload": "if [ \"$S3_STATIC_PATH\" != \"\" ] ; then aws s3 sync --acl public-read ./build/client/assets/ $S3_STATIC_PATH ; fi",
"postinstall": "if [ \"$NODE_ENV\" = production ] ; then npm run prod-build-server && npm run prod-maybe-build-client && npm run prod-static-upload && npm run install-config-file; npm run notify-slack; fi",
"xpostinstall": "if [ \"$NODE_ENV\" = production ] ; then npm run prod-build && npm run prod-static-upload && npm run install-config-file && npm run notify-slack; fi",
"notify-slack": "if [ \"$SLACK_NOTIFY_URL\" != \"\" ] ; then echo notifying slack && curl -XPOST -d '{\"channel\": \"#spoke\", \"text\":\"'\"$(whoami) building spoke $(git log -1 --pretty=%h) for $AWS_S3_BUCKET_NAME\"'\"}' $SLACK_NOTIFY_URL; fi",
"install-config-file": "if [ \"$CONFIG_FILE\" != \"\" ] ; then cp $CONFIG_FILE ./CONFIG_FILE.json; fi",
"install-prebuilt-assets": "if [ \"$ASSETS_DIR_PREBUILT\" != \"\" ] ; then cp -rp $ASSETS_DIR_PREBUILT ./build/; fi",
"start": "node ./build/server/server",
"start:heroku": "BASE_URL=$(node ./build/server/heroku/print-base-url) npm start",
"start:test": "nf start -w --env ./dev-tools/.env.test --procfile ./dev-tools/Procfile.test",
"start:test-babel": "nodemon --signal SIGTERM -e js,jsx,md,mustache -w ./src --exec ./dev-tools/babel-run -- ./src/server",
"dev-heroku-dispatch": "nodemon --signal SIGTERM -e js,jsx -w ./src --exec ./dev-tools/babel-run-with-env.js -- ./src/heroku/heroku-dispatch",
"prod-heroku-dispatch": "node ./build/server/heroku/heroku-dispatch.js",
"dev-message-sender-01": "nodemon --signal SIGTERM -e js,jsx -w ./src --exec ./dev-tools/babel-run -- ./src/workers/message-sender-01",
"prod-message-sender-01": "./dev-tools/babel-run ./src/workers/message-sender-01.js",
"dev-message-sender-234": "nodemon --signal SIGTERM -e js,jsx -w ./src --exec ./dev-tools/babel-run -- ./src/workers/message-sender-234",
"prod-message-sender-234": "./dev-tools/babel-run ./src/workers/message-sender-234.js",
"dev-message-sender-56": "nodemon --signal SIGTERM -e js,jsx -w ./src --exec ./dev-tools/babel-run -- ./src/workers/message-sender-56",
"prod-message-sender-56": "./dev-tools/babel-run ./src/workers/message-sender-56.js",
"dev-message-sender-789": "nodemon --signal SIGTERM -e js,jsx -w ./src --exec ./dev-tools/babel-run -- ./src/workers/message-sender-789",
"prod-message-sender-789": "./dev-tools/babel-run ./src/workers/message-sender-789.js",
"dev-job-handler": "nodemon --signal SIGTERM -e js,jsx -w ./src --exec ./dev-tools/babel-run -- ./src/workers/job-handler",
"prod-job-handler": "./dev-tools/babel-run ./src/workers/job-handler",
"dev-incoming-message-handler": "nodemon --signal SIGTERM -e js,jsx -w ./src --exec ./dev-tools/babel-run -- ./src/workers/incoming-message-handler",
"prod-incoming-message-handler": "./dev-tools/babel-run ./src/workers/incoming-message-handler.js",
"predev-start": "npm run clean",
"dev-start": "nodemon --signal SIGTERM -e js,jsx,md,mustache -w ./src --exec ./dev-tools/babel-run -- ./src/server",
"dev-start-debug": "nodemon --signal SIGTERM -e js,jsx,md,mustache -w ./src --exec ./dev-tools/babel-run-debug -- ./src/server",
"generate-contacts": "./dev-tools/babel-run ./dev-tools/generate-contacts.js",
"jest-test": "jest __test__/backend.test.js",
"dev": "nf start -w --procfile ./dev-tools/Procfile.dev",
"debug-server": "nf start -w --procfile ./dev-tools/Procfile-debug-server.dev",
"buy-numbers": "./dev-tools/babel-run-with-env.js ./dev-tools/buy-numbers.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoveOnOrg/spoke.git"
},
"keywords": [
"spoke",
"sms",
"texting",
"campaigns",
"campaigning",
"politics",
"activism",
"organizing",
"field"
],
"author": "Axle Factory",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/MoveOnOrg/Spoke/issues"
},
"homepage": "https://github.com/MoveOnOrg/Spoke/#readme",
"dependencies": {
"@aoberoi/passport-slack": "^1.0.5",
"@bandwidth/messaging": "^3.0.0",
"@bandwidth/numbers": "^1.7.0",
"@date-io/core": "^1.3.13",
"@date-io/date-fns": "^1.3.13",
"@trt2/gsm-charset-utils": "^1.0.13",
"aphrodite": "^2.3.1",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-server-express": "^1.2.0",
"apollo-utilities": "^1.3.4",
"auth0-js": "^9.14.3",
"aws-serverless-express": "^3.3.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.15.2",
"camelcase-keys": "^4.1.0",
"color-difference": "^0.3.4",
"cookie-session": "^2.0.0-alpha.1",
"dataloader": "^1.2.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"fs": "^0.0.2",
"google-libphonenumber": "^3.0.0",
"googleapis": "^39.2.0",
"graphql": "^0.13.2",
"graphql-date": "^1.0.3",
"graphql-tag": "^2.10.3",
"graphql-tools": "^2.8.0",
"graphql-type-json": "^0.1.4",
"heroku-ssl-redirect": "^0.1.1",
"humps": "^1.1.0",
"is-url": "^1.2.2",
"isomorphic-fetch": "^2.2.1",
"jest-each": "^0.3.1",
"json-loader": "^0.5.4",
"knex": "^0.20.7",
"lodash": "^4.13.1",
"mailgun-js": "^0.20.0",
"minilog": "^3.0.1",
"moment": "2.29.2",
"moment-timezone": "^0.5.14",
"nexmo": "^2.3.2",
"node-abort-controller": "^1.0.4",
"node-fetch": "^2.6.7",
"nodemailer": "^6.4.16",
"omit-deep-lodash": "^1.1.4",
"papaparse": "^5.1.1",
"passport": "^0.3.2",
"passport-auth0": "^0.6.1",
"passport-local": "^1.0.0",
"passport-local-authenticate": "^1.2.0",
"pg": "^8.0.3",
"pg-connection-string": "^2.4.0",
"pg-query-stream": "^1.1.1",
"prop-types": "^15.6.0",
"query-string": "^4.1.0",
"react": "16.14.0",
"redis": "3",
"request": "^2.81.0",
"rethink-knex-adapter": "0.4.20",
"rollbar": "^2.4.4",
"terser-webpack-plugin": "4",
"thinky": "^2.3.3",
"timezonecomplete": "^5.5.0",
"twilio": "^3.40.0",
"url-join": "^4.0.1",
"us-area-codes": "^1.0.0",
"uuid": "^3.1.0",
"wait-for-expect": "^1.1.1",
"webpack": "4",
"webpack-manifest-plugin": "^2.0.4",
"yup": "0.32.3"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-jest": "^23.4.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2017": "^6.24.1",
"cypress": "5.6.0",
"cypress-file-upload": "^4.0.6",
"cypress-wait-until": "^1.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"fakeredis": "^2.0.0",
"foreman": "^3.0.1",
"husky": "4",
"json2csv": "^3.6.2",
"lint-staged": "^9.2.0",
"mockdate": "^2.0.2",
"nock": "11.9.1",
"nodemon": "^2.0.2",
"prettier": "^1.18.2",
"react-hot-loader": "4.13.0",
"react-scripts": "^2.1.3",
"react-test-renderer": "15",
"regenerator-runtime": "^0.10.5",
"selenium-webdriver": "^3.6.0",
"sqlite3": "^4.1.1",
"wait-on": "^2.1.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,json}": [
"prettier --write",
"git add"
]
},
"optionalDependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.3.10",
"aws-sdk": "^2.6.3",
"chart.js": "^2.9.4",
"date-fns": "^2.19.0",
"draft-js": "^0.7.0",
"material-ui-search-bar": "^1.0.0",
"mui-datatables": "^3.7.7",
"react-addons-css-transition-group": "^15.2.1",
"react-apollo": "2.5.7",
"react-async-script": "^0.6.0",
"react-chartjs-2": "^2.11.1",
"react-color": "^2.19.3",
"react-dom": "16.14.0",
"react-formal": "2.2.2",
"react-router": "^3.2.0",
"react-tooltip": "^4.2.13",
"recompose": "^0.30.0",
"webpack-cli": "^4.7.2"
}
}