-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.17 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.17 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
{
"name": "@wdio/visual-reporter",
"author": "Wim Selles - wswebcreation",
"description": "Visual Testing HTML Report for the @wdio/visual-service module",
"version": "0.4.3",
"license": "MIT",
"homepage": "https://webdriver.io/docs/visual-testing",
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/visual-testing.git"
},
"type": "module",
"bin": {
"wdio-visual-reporter": "./dist/cli.js"
},
"scripts": {
"build": "run-s clean build:*",
"build:report": "remix vite:build",
"build:scripts": "tsc -p tsconfig.scripts.json",
"clean": "rimraf coverage build *.tsbuildinfo",
"dev": "VISUAL_REPORT_LOCAL_DEV=true run-s build:scripts script:prepare.report && run-p watch:scripts dev:remix",
"dev:remix": "remix vite:dev",
"script:prepare.report": "node ./dist/prepareReportAssets.js",
"test:lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"watch": "run-s clean watch:*",
"watch:dev": "npm run dev",
"watch:scripts": "npm run build:scripts --watch"
},
"dependencies": {
"@inquirer/prompts": "^7.0.1",
"ora": "^8.1.1",
"sirv-cli": "^3.0.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@remix-run/node": "^2.14.0",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"@remix-run/dev": "^2.13.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"isbot": "^5.1.17",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-select": "^5.8.3",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}