35 lines
1.4 KiB
JSON
35 lines
1.4 KiB
JSON
{
|
|
"name": "@goauthentik/web-tests",
|
|
"private": true,
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
"@typescript-eslint/parser": "^6.12.0",
|
|
"@wdio/cli": "^8.24.3",
|
|
"@wdio/local-runner": "^8.24.3",
|
|
"@wdio/mocha-framework": "^8.24.3",
|
|
"@wdio/spec-reporter": "^8.24.2",
|
|
"eslint": "^8.54.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-plugin-sonarjs": "^0.23.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.1.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.3.2",
|
|
"wdio-wait-for": "^3.0.9"
|
|
},
|
|
"scripts": {
|
|
"wdio": "wdio run ./wdio.conf.ts",
|
|
"lint:precommit": "eslint --max-warnings 0 --config ./.eslintrc.precommit.json $(git status --porcelain . | grep '^[AM?][M?]' | cut -d'/' -f3- | grep -E '\\.(ts|js|tsx|jsx)$')",
|
|
"lint": "eslint . --max-warnings 0 --fix",
|
|
"lint:spelling": "codespell -D - -D $(git rev-parse --show-toplevel 2> /dev/null)/.github/codespell-dictionary.txt -I $(git rev-parse --show-toplevel 2> /dev/null)/.github/codespell-words.txt ./test -s",
|
|
"precommit": "run-s lint:precommit lint:spelling prettier",
|
|
"prettier-check": "prettier --check .",
|
|
"prettier": "prettier --write ."
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|