-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 6.47 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 6.47 KB
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
{
"name": "wevoteusa",
"version": "1.0.0",
"description": "Volunteer team front end application",
"main": "index.jsx",
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wevote/weconnect.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 && 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 && PROTOCOL=HTTP webpack serve --mode development",
"start-windows": "cross-env node node/buildDateFile.js && cross-env 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-real-certs-windows": "cross-env node node/buildDateFile.js && cross-env USE_REAL_CERTS=1 && cross-env 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",
"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",
"@wdio/cli": "^9.4.5",
"babel-loader": "^9.2.1",
"babel-plugin-styled-components": "^2.1.4",
"chromatic": "^10.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^10.1.0",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^7.32.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-webpack-plugin": "^2.4.3",
"express": "^5.0.0-beta.3",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"html-webpack-plugin": "^5.6.0",
"jsdom": "^23.0.1",
"mocha": "^10.8.2",
"pre-commit": "^1.0.10",
"react-papaparse": "^4.4.0",
"terser-webpack-plugin": "^5.1.2",
"unused-webpack-plugin": "^2.4.0",
"webpack": "^5.99.8",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-shell-plugin-next": "^2.3.2"
},
"dependencies": {
"@date-io/dayjs": "^3.2.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mui/icons-material": "^5.17.1",
"@mui/lab": "^5.0.0-alpha.96",
"@mui/material": "^5.16.0",
"@mui/styled-engine-sc": "^6.3.0",
"@mui/styles": "^5.16.0",
"@mui/x-date-pickers": "^7.27.0",
"@openreplay/tracker": "^8.1.1",
"@tanstack/react-query": "^5.64.1",
"@tanstack/react-query-devtools": "^5.62.11",
"axios": "^1.8.2",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"d3-geo": "^2.0.1",
"d3-selection": "^2.0.0",
"d3-zoom": "^3.0.0",
"dayjs": "^1.11.13",
"depcheck": "^1.4.7",
"file-saver": "^2.0.5",
"fs-extra": "^10.0.0",
"glob": "^9.0.0",
"https-browserify": "^1.0.0",
"iframe-resizer-react": "1.1.0",
"jquery": "^3.7.1",
"keymirror": "~0.1.1",
"lodash-es": "^4.17.21",
"luxon": "^3.6.1",
"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": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "~18.3.1",
"react-ga4": "^2.1.0",
"react-google-autocomplete": "^2.7.3",
"react-google-button": "^0.8.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-gtm-module": "^2.0.11",
"react-helmet-async": "^2.0.5",
"react-papaparse": "^4.4.0",
"react-phone-number-input": "^3.4.3",
"react-router": "^7.1.1",
"react-text-truncate": "^0.19.0",
"react-toastify": "^11.0.2",
"react-truncate-markup": "^5.1.2",
"rxjs": "^6.6.7",
"styled-components": "^6.1.15",
"topojson-client": "^3.1.0",
"use-file-picker": "^2.1.2",
"validator": "^13.12.0"
},
"bugs": {
"url": "https://github.com/wevote/weconnect/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/wevote/weconnect#readme",
"_id": "wevoteusa@1.0.0"
}