-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"type": "module",
"name": "lighthouse-crawler",
"main": "./src/index.js",
"bin": "./src/bin.js",
"types": "./generated/index.d.ts",
"files": [
"./generated/**",
"./src/**",
"!**/*.test.js"
],
"scripts": {
"eslint": "eslint --no-eslintrc -c .eslintrc.json .",
"generate-types": "rm -rf ./generated && tsc -p tsconfig.d.json",
"lint": "npm run eslint && npm run tsc && npm run stylelint",
"stylelint": "stylelint '**/*.css'",
"test": "vitest run",
"test:ui": "vitest --ui --coverage",
"tsc": "tsc"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@types/d3": "^7.4.3",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "8.57.0",
"eslint-plugin-array-func": "^4.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-unicorn": "^54.0.0",
"stylelint": "^16.5.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.1.6",
"vitest": "^1.6.0"
},
"dependencies": {
"chrome-launcher": "^1.1.2",
"esbuild": "^0.21.5",
"htmlparser2": "^9.1.0",
"lighthouse": "^12.0.0",
"mermaid": "^10.9.1",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"yargs": "^17.7.2"
}
}