-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
90 lines (90 loc) · 3.02 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
{
"name": "@nightwatch/html-reporter-template",
"description": "Nightwatch HTML reporter template",
"version": "0.3.0",
"type": "commonjs",
"scripts": {
"dev:html": "VITE_PRODUCT=html vite",
"dev:vrt": "VITE_PRODUCT=vrt vite",
"build": "npm run build:html && npm run build:vrt && tsc -p tsconfig.node.cjs.json",
"build:html": "tsc && VITE_PRODUCT=html vite build && tsc -p tsconfig.node.cjs.json",
"build:vrt": "tsc && VITE_PRODUCT=vrt vite build && tsc -p tsconfig.node.cjs.json",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"clean": "rm -rf html vrt index.js index.d.ts *.tsbuildinfo *.tgz",
"test": "npx nightwatch --headless",
"docs": "npx typedoc --tsconfig tsconfig.node.cjs.json --readme none --gitRevision main --externalPattern --excludeExternals --excludeProtected --excludePrivate --plugin typedoc-plugin-markdown --out docs/ index.ts && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nightwatchjs/html-reporter.git"
},
"author": "Vaibhav Singh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nightwatchjs/html-reporter/issues"
},
"homepage": "https://github.com/nightwatchjs/html-reporter#readme",
"keywords": [
"nightwatch",
"html-reporter",
"react",
"e2e"
],
"devDependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"@nightwatch/react": "^3.1.1",
"@radix-ui/react-accordion": "1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-toggle": "1.0.3",
"@radix-ui/react-tooltip": "1.0.7",
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"framer-motion": "^11.0.6",
"fuse.js": "^7.0.0",
"nightwatch": "^3.6.1",
"prettier": "^3.2.5",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-medium-image-zoom": "^5.1.10",
"react-virtuoso": "^4.7.1",
"styled-components": "^6.1.8",
"ts-node": "^10.9.2",
"typedoc": "^0.25.9",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"vite": "^4.5.0",
"vite-plugin-singlefile": "^0.13.5"
},
"files": [
"index.js",
"index.d.ts",
"vrt",
"html"
],
"exports": {
".": {
"import": "./index.js",
"require": "./index.js"
}
}
}