-
Notifications
You must be signed in to change notification settings - Fork 301
/
package.json
180 lines (180 loc) · 7.29 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
{
"name": "wevoteusa",
"version": "1.0.0",
"description": "We Vote front end application",
"main": "index.jsx",
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wevote/WebApp.git"
},
"commentMay2021": "'production' forces minified libraries (especially react), and 'MINIFIED' passes all our code through the Terser minifier/mangler/compressor tool.",
"scripts": {
"wdio:setup": "node tests/browserstack_automation/buildMobileCapabilities.js",
"wdio": "wdio ./tests/browserstack_automation/config/wdio.config.js",
"wdio-local-bs": "wdio ./tests/browserstack_automation/config/wdio.config.local.js",
"wdio-local": "wdio ./tests/browserstack_automation/config/wdio.local.config.js",
"build": "node node/buildDateFile.js && npm run build-storybook && PRODUCTION=1 && MINIMIZED=1 webpack --mode production",
"buildCordova": "node node/buildDateFile.js && node node/buildSrcCordova && CORDOVA=1 && webpack --mode development && node node/logCompileDate.js",
"buildCordovaAndLinks": "node node/buildDateFile.js && node node/buildSrcCordova && CORDOVA=1 && webpack --mode development && node node/buildSymLinksRemote.js && bash ./node/unSymLinkIOS.sh && node node/logCompileDate.js",
"lint": "eslint --format stylish --ext .jsx --ext .js src/js",
"lintCordova": "eslint --format stylish --ext .jsx --ext .js srcCordova/js",
"prod": "npm run build",
"run-prod-local": "node server-prod-local.js",
"start": "node node/buildDateFile.js && npm run build-storybook && PROTOCOL=HTTP webpack serve --mode development",
"start-win": "node node/buildDateFile.js && webpack serve --mode development",
"start-https": "node node/buildDateFile.js && PROTOCOL=HTTPS webpack serve --mode development",
"start-https-real-certs": "node node/buildDateFile.js && USE_REAL_CERTS=1 && PROTOCOL=HTTPS webpack serve --mode development",
"start-https-analysis": "node node/buildDateFile.js && PROTOCOL=HTTPS && ANALYSIS=1 webpack serve --mode development",
"start-minified-libs": "webpack serve --mode production",
"start-minified-libs-analysis": "ANALYSIS=1 webpack serve --mode development",
"start-minified-libs-analysis-prod": "ANALYSIS=1 webpack serve --mode production",
"test": "echo \"No test specified\" && exit 0",
"readyTest-Browser": "./node_modules/.bin/wdio ./tests/browserstack/wdio.config.js",
"autoTest": " mocha --require @babel/register --require tests/component/index.js \"./tests/component/tests.js\" && npm run lint",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_89afc2af23dd1fd"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-private-methods": "^7.23.3",
"@babel/plugin-transform-private-property-in-object": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@babel/register": "^7.23.7",
"@snyk/protect": "^1.657.0",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/blocks": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-webpack5": "^7.6.7",
"@storybook/test": "^7.6.7",
"@wdio/browserstack-service": "^8.35.1",
"@wdio/cli": "^8.35.1",
"@wdio/config": "^8.35.0",
"@wdio/globals": "^8.35.1",
"@wdio/local-runner": "^8.35.1",
"@wdio/mocha-framework": "^8.35.0",
"@wdio/protocols": "^8.32.0",
"@wdio/spec-reporter": "^8.32.4",
"axios": "^1.6.0",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"chai": "^4.3.7",
"chromatic": "^10.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cordova-plugin-contacts-x": "^2.0.3",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-wdio": "^8.24.12",
"eslint-webpack-plugin": "^2.4.3",
"express": "^5.0.0-beta.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"jsdom": "^23.0.1",
"mini-css-extract-plugin": "^2.7.1",
"mocha": "^10.2.0",
"moment-locales-webpack-plugin": "^1.2.0",
"pre-commit": "^1.2.2",
"react-hot-loader": "^4.13.1",
"storybook": "^7.6.3",
"terser-webpack-plugin": "^5.1.2",
"unused-webpack-plugin": "^2.4.0",
"webdriver": "^8.35.0",
"webdriverio": "^8.35.1",
"webpack": "^5.90.3",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-shell-plugin-next": "^2.3.1"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.1.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@loadable/component": "^5.16.4",
"@mui/icons-material": "^5.16.0",
"@mui/lab": "^5.0.0-alpha.96",
"@mui/material": "^5.16.0",
"@mui/styled-engine-sc": "^5.10.1",
"@mui/styles": "^5.16.0",
"@openreplay/tracker": "^8.1.1",
"@storybook/addon-actions": "^7.6.20",
"@stripe/react-stripe-js": "^1.3.0",
"@stripe/stripe-js": "^1.13.0",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"d3-geo": "^2.0.1",
"d3-selection": "^2.0.0",
"d3-zoom": "^3.0.0",
"flux": "~4.0.1",
"fs-extra": "^10.0.0",
"gapi-script": "github:wevote/gapi-script",
"glob": "^9.0.0",
"iframe-resizer-react": "1.1.0",
"jquery": "^3.7.1",
"keymirror": "~0.1.1",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"mui-file-dropzone": "^4.0.1",
"object-assign": "~4.1.1",
"process": "^0.11.10",
"prop-types": "~15.8.1",
"puppeteer": "^22.10.0",
"react": "~17.0.2",
"react-bootstrap": "^1.6.4",
"react-confetti": "^6.1.0",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "~17.0.2",
"react-fullstory": "^1.4.0",
"react-ga4": "^2.1.0",
"react-google-autocomplete": "^2.6.1",
"react-google-button": "^0.8.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-gtm-module": "^2.0.11",
"react-helmet-async": "^1.3.0",
"react-phone-number-input": "^3.4.3",
"react-player": "^2.16.0",
"react-rewards": "^2.0.4",
"react-router-dom": "^5.3.4",
"react-router-dom-v5-compat": "^6.23.1",
"react-share": "^4.4.1",
"react-slick": "^0.30.2",
"react-svg": "^14.1.9",
"react-text-truncate": "^0.19.0",
"react-toastify": "^7.0.4",
"react-truncate-markup": "~5.1.0",
"rxjs": "^6.6.7",
"styled-components": "~5.3.11",
"topojson-client": "^3.1.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"bugs": {
"url": "https://github.com/wevote/WebApp/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/wevote/WebApp#readme",
"_id": "[email protected]"
}