30 lines
1.3 KiB
JSON
30 lines
1.3 KiB
JSON
|
{
|
||
|
"name": "my-new-project",
|
||
|
"type": "module",
|
||
|
"devDependencies": {
|
||
|
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
|
||
|
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
||
|
"@typescript-eslint/parser": "^6.7.2",
|
||
|
"@wdio/cli": "^8.16.11",
|
||
|
"@wdio/local-runner": "^8.16.11",
|
||
|
"@wdio/mocha-framework": "^8.16.11",
|
||
|
"@wdio/spec-reporter": "^8.16.9",
|
||
|
"eslint": "^8.49.0",
|
||
|
"eslint-config-google": "^0.14.0",
|
||
|
"eslint-plugin-sonarjs": "^0.21.0",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"prettier": "^3.0.3",
|
||
|
"ts-node": "^10.9.1",
|
||
|
"typescript": "^5.2.2",
|
||
|
"wdio-wait-for": "^3.0.7"
|
||
|
},
|
||
|
"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: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 ."
|
||
|
}
|
||
|
}
|