forked from StateVoicesNational/Spoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
211 lines (211 loc) · 8.73 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
{
"name": "spoke",
"version": "7.0.0",
"description": "Spoke",
"main": "src/server",
"engines": {
"node": ">=10.3",
"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-e2e": "jest --runInBand --config jest.config.e2e.js",
"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-build-server": "babel ./src -d ./build/server --source-maps --copy-files; 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 s3cmd sync --acl-public --guess-mime-type ./build/client/assets/ $S3_STATIC_PATH ; fi",
"postinstall": "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",
"start": "node ./build/server/server",
"start:heroku": "BASE_URL=$(node ./build/server/heroku/print-base-url) npm start",
"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",
"dev-nowrap": "nf start --trim 500 --procfile ./dev-tools/Procfile.dev --env ./__test__/e2e/.env.e2e",
"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": "MIT",
"bugs": {
"url": "https://github.com/MoveOnOrg/Spoke/issues"
},
"homepage": "https://github.com/MoveOnOrg/Spoke/#readme",
"dependencies": {
"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.10.0",
"aws-sdk": "^2.6.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",
"chart.js": "^1.1.1",
"cookie-session": "^2.0.0-alpha.1",
"dataloader": "^1.2.0",
"dotenv": "^2.0.0",
"draft-js": "^0.7.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",
"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",
"material-ui": "^0.20.1",
"material-ui-color-picker": "^1.0.1",
"material-ui-datatables": "^0.18.2",
"material-ui-search-bar": "^0.4.2",
"minilog": "^3.0.1",
"moment": "2.14.1",
"moment-timezone": "^0.5.14",
"nexmo": "^2.3.2",
"node-abort-controller": "^1.0.4",
"node-fetch": "^2.6.0",
"nodemailer": "^4.3.1",
"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": "^6.4.2",
"pg-query-stream": "^1.1.1",
"prop-types": "^15.6.0",
"query-string": "^4.1.0",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.2.1",
"react-apollo": "2.5.7",
"react-async-script": "^0.6.0",
"react-chartjs": "^0.7.3",
"react-dom": "^15.6.1",
"react-formal": "^0.25.4",
"react-router": "^3.2.0",
"react-tap-event-plugin": "^2.0.0",
"recompose": "^0.30.0",
"redis": "^2.8.0",
"request": "^2.81.0",
"rethink-knex-adapter": "^0.4.18",
"rollbar": "^2.4.4",
"thinky": "^2.3.3",
"timezonecomplete": "^5.5.0",
"twilio": "^3.40.0",
"url-join": "^4.0.1",
"uuid": "^3.1.0",
"wait-for-expect": "^1.1.1",
"webpack": "^3.8.1",
"webpack-manifest-plugin": "^1.3.2",
"yup": "^0.24.0"
},
"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": "^4.4.1",
"cypress-file-upload": "^4.0.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"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": "^3.0.1",
"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": "^1.3.0",
"react-scripts": "^2.1.3",
"react-test-renderer": "15",
"regenerator-runtime": "^0.10.5",
"saucelabs": "^1.5.0",
"selenium-webdriver": "^3.6.0",
"sqlite3": "^4.1.1",
"wait-on": "^2.1.0",
"webpack-dev-server": "^2.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,json}": [
"prettier --write",
"git add"
]
}
}