forked from microsoft/accessibility-insights-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
193 lines (193 loc) · 8.69 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
{
"name": "accessibility-insights-web",
"private": true,
"version": "1.0.0",
"description": "Accessibility Insights for Web",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/accessibility-insights-web"
},
"engines": {
"node": ">=12.16.1",
"yarn": "^1.22.4"
},
"workspaces": [
"packages/*"
],
"scripts": {
"ada-cat": "grunt ada-cat",
"assessment": "npm-run-all --serial scss:clean fastpass build:all test test:e2e test:unified",
"build": "grunt",
"build:all": "grunt build-all",
"build:dev": "grunt build-dev",
"build:mock-adb": "grunt exec:pkg-mock-adb",
"build:unified": "grunt build-unified",
"build:unified:all": "grunt build-unified-all",
"build:unified:canary": "grunt build-unified-canary",
"build:package:report": "lerna --scope accessibility-insights-report run build",
"build:package:ui": "grunt build-package-ui",
"build:prod": "grunt build-prod",
"change-log": "node ./tools/get-change-log-for-release.js",
"clean": "grunt clean:*",
"clean:mock-adb": "grunt clean:mock-adb",
"copyright:check": "license-check-and-add check -f copyright-header.config.json",
"copyright:fix": "license-check-and-add add -f copyright-header.config.json",
"download:electron-mirror": "node ./pipeline/scripts/download-electron-mirror.js",
"fastpass": "npm-run-all --print-label scss:build --parallel copyright:check lint:check format:check null:check && grunt ada-cat",
"fastpass:fix": "npm-run-all --print-label --serial scss:clean copyright:fix lint:fix format:fix",
"format:check": "prettier --config prettier.config.js --check \"**/*\"",
"format:fix": "prettier --config prettier.config.js --write \"**/*\"",
"lint:check": "eslint src/**/*.{js,ts,tsx}",
"lint:fix": "eslint src/**/*.{js,ts,tsx} --quiet --fix",
"mock-adb": "node ./src/tests/miscellaneous/mock-adb/setup-mock-adb-command.js",
"null:autoadd": "node ./tools/strict-null-checks/auto-add.js",
"null:check": "tsc -p ./tsconfig.strictNullChecks.json",
"null:find": "node ./tools/strict-null-checks/find.js",
"null:find-cycles": "node ./tools/strict-null-checks/find-cycles.js",
"null:progress": "node ./tools/strict-null-checks/progress.js",
"react-devtools": "react-devtools",
"scss:build": "tsm \"src/**/*.scss\"",
"scss:clean": "grunt clean:scss",
"serve:mock-service-for-android": "node ./src/tests/miscellaneous/mock-service-for-android/serve.js",
"start:unified": "electron drop/electron/unified-dev/product/bundle/main.bundle.js",
"start:unified:dev": "cross-env DEV_MODE=true yarn start:unified",
"start:unified:mock-adb": "cross-env ANDROID_HOME=drop/mock-adb yarn start:unified",
"test": "cross-env --max-old-space-size=16384 jest --projects src/tests/unit",
"publish-code-coverage": "npx codecov",
"test:e2e": "cross-env --max-old-space-size=16384 jest --projects src/tests/end-to-end --runInBand --forceExit --detectOpenHandles",
"test:e2e:docker:build": "docker build -t accessibility-insights-web-e2e .",
"test:e2e:docker:run": "docker run -t accessibility-insights-web-e2e",
"test:e2e:docker": "npm-run-all --serial test:e2e:docker:build \"test:e2e:docker:run {@}\" --",
"test:unified": "cross-env --max-old-space-size=16384 jest --projects src/tests/electron --runInBand --forceExit --detectOpenHandles",
"test:report:e2e": "lerna --scope accessibility-insights-report-e2e-tests run test",
"watch": "npm-run-all --parallel --race --print-label watch:scss watch:grunt watch:test watch:webpack-dev-browser watch:webpack-unified",
"watch:build:all": "npm-run-all --parallel --race --print-label watch:scss watch:grunt watch:webpack-dev-browser watch:webpack-unified",
"watch:build:web": "npm-run-all --parallel --race --print-label watch:scss watch:grunt watch:webpack-dev-browser",
"watch:build:unified": "npm-run-all --parallel --race --print-label watch:scss watch:grunt watch:webpack-unified",
"watch:scss": "tsm \"src/**/*.scss\" --watch",
"watch:grunt": "grunt watch",
"watch:test": "jest --watch --projects src/tests/unit --coverage false --colors",
"watch:webpack-dev-browser": "webpack --watch --config-name dev --color --progress",
"watch:webpack-unified": "webpack --watch --config-name unified --color --progress",
"with:mock-service-for-android": "npm-run-all --race --parallel serve:mock-service-for-android"
},
"devDependencies": {
"7zip-bin": "^5.0.3",
"@electron/get": "^1.12.2",
"@types/applicationinsights-js": "^1.0.7",
"@types/chrome": "0.0.127",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.19",
"@types/jsdom": "^16.2.5",
"@types/lodash": "^4.14.166",
"@types/luxon": "^1.25.0",
"@types/make-dir": "^2.1.0",
"@types/node": "^14.14.19",
"@types/q": "^1.5.4",
"@types/react": "^16.14.2",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^16.9.10",
"@types/react-helmet": "^6.1.0",
"@types/react-resize-detector": "^5.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/serve-static": "^1.13.8",
"@types/ua-parser-js": "^0.7.35",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"app-builder-lib": "^22.10.4",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"codecov": "^3.8.1",
"commander": "^6.2.1",
"core-js-bundle": "^3.8.2",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"electron-builder": "^22.9.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-security": "^1.4.0",
"express": "^4.16.4",
"extract-zip": "^2.0.1",
"fake-indexeddb": "^3.1.2",
"fork-ts-checker-webpack-plugin": "^6.0.8",
"grunt": "^1.3.0",
"grunt-bom-removal": "1.0.1",
"grunt-cli": "^1.3.1",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-sass": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-junit": "^12.0.0",
"js-yaml": "^3.14.1",
"lerna": "^3.22.1",
"license-check-and-add": "^3.0.4",
"make-dir": "^3.1.0",
"mini-css-extract-plugin": "1.3.3",
"npm-run-all": "^4.1.5",
"pkg": "^4.4.9",
"playwright": "^1.7.1",
"preprocess": "^3.2.0",
"prettier": "^2.2.1",
"react-devtools": "^4.10.1",
"regenerator-runtime": "^0.13.7",
"sass": "^1.32.0",
"sass-loader": "^10.1.0",
"script-loader": "0.7.2",
"serve-static": "^1.13.2",
"simple-git": "^2.31.0",
"source-map-loader": "^2.0.0",
"spectron": "^12.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.13",
"typed-scss-modules": "^3.4.0",
"typemoq": "^2.1.0",
"typescript": "^4.1.3",
"webdriverio": "^4.13.0",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"accessibility-insights-for-android-service-bin": "^1.2.1",
"appium-adb": "^8.9.2",
"applicationinsights-js": "^1.0.21",
"axe-core": "4.1.1",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"electron": "10.1.5",
"electron-log": "^4.3.1",
"electron-updater": "^4.3.5",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"office-ui-fabric-react": "7.98.0",
"portfinder": "^1.0.28",
"q": "1.5.1",
"react": "^16.14.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-resize-detector": "^5.2.0",
"react-router-dom": "^5.2.0",
"ua-parser-js": "^0.7.23",
"uuid": "^8.3.2",
"webextension-polyfill-ts": "^0.22.0"
},
"resolutions": {
"@types/node": "^14.14.6",
"dot-prop": "^5.2.0",
"kind-of": "^6.0.3",
"minimist": "^1.2.3",
"yargs": "^15.3.1"
}
}