-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
135 lines (135 loc) · 4.38 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
{
"name": "mutual-aid-app",
"description": "",
"scripts": {
"release": "release-it",
"lint": "eslint src scripts",
"fix": "eslint --fix src scripts",
"find-new-strings": "i18next-scanner --config ./src/lib/strings/__i18nextScanner.config.js 'scripts/**/*.js' 'src/**/*.js'",
"i18n:validate": "node scripts/validateLocaleFiles.js",
"local": "npm run local:react & npm run local:express",
"local:express": "NODE_ENV=dev node index.js",
"local:slack": "NODE_ENV=dev ngrok http 5000",
"local:react": "REACT_APP_CONTEXT=true NODE_ENV=dev react-scripts start",
"local:airtable-sync": "NODE_ENV=dev node -r module-alias/register ./src/workers/airtable-sync/worker.js",
"local:script": "DOTENV_CONFIG_PATH=./.env node -r module-alias/register -r dotenv/config -r ~strings/i18nextInit",
"local:twilio": "twilio-run start --ngrok='' src/twilio",
"prod:express": "node index.js",
"prod:react": "REACT_APP_CONTEXT=true react-scripts build",
"prod:script": "DOTENV_CONFIG_PATH=./.env.prod node -r module-alias/register -r dotenv/config -r ~strings/i18nextInit",
"build": "npm run prod:react",
"start": "npm run prod:express",
"test": "react-scripts test"
},
"main": "index.js",
"engines": {
"node": "12.16.x"
},
"_moduleAliases": {
"~lib": "src/lib",
"~airtable": "src/lib/airtable",
"~slack": "src/lib/slack",
"~assets": "src/lib/assets",
"~strings": "src/lib/strings"
},
"jest": {
"moduleNameMapper": {
"^~lib(.*)$": "<rootDir>/src/lib$1",
"^~airtable(.*)$": "<rootDir>/src/lib/airtable$1",
"^~slack(.*)$": "<rootDir>/src/lib/slack$1",
"^~assets(.*)$": "<rootDir>/src/lib/assets$1",
"^~strings(.*)$": "<rootDir>/src/lib/strings$1"
}
},
"proxy": "http://localhost:5000",
"dependencies": {
"@google-cloud/storage": "4.7.0",
"@googlemaps/google-maps-services-js": "2.4.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.53",
"@material-ui/styles": "^4.10.0",
"@reach/router": "^1.3.4",
"@slack/events-api": "2.3.3",
"@slack/interactive-messages": "1.5.0",
"@slack/web-api": "5.8.0",
"airtable": "0.8.1",
"airtable-change-detector": "0.1.1",
"axios": "0.21.1",
"axios-hooks": "1.9.0",
"body-parser": "1.19.0",
"date-fns": "^2.14.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-basic-auth": "1.2.0",
"geojson-utils": "1.1.0",
"geonames.js": "2.3.0",
"i18next": "19.4.3",
"i18next-fs-backend": "^1.0.7",
"i18next-http-backend": "^1.0.16",
"lodash": "^4.17.19",
"lru-cache": "^5.1.1",
"mapbox-gl": "1.10.1",
"material-ui-phone-number": "^2.2.6",
"mocha": "^7.1.1",
"module-alias": "2.2.2",
"morgan": "1.10.0",
"query-string": "^6.12.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"react-i18next": "11.3.5",
"react-mapbox-gl": "^4.8.6",
"react-scripts": "^3.4.1",
"ts-react-json-table": "^0.1.2",
"twilio": "3.42.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "7.9.5",
"@testing-library/react": "^10.4.6",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"auto-changelog": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-config-react-app": "^5.0.2",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-custom-alias": "^1.2.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-no-unsanitized": "^3.1.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "^2.3.0",
"i18next-scanner": "2.11.0",
"ngrok": "3.2.7",
"prettier": "^2.0.5",
"release-it": "^13.6.4",
"twilio-run": "^2.7.0",
"typescript": "^3.9.6"
},
"private": true,
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"version": "0.61.0",
"release-it": {
"hooks": {
"after:bump": "npx auto-changelog -p -l 15"
}
}
}