mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 00:52:47 +02:00
* eslint config + packages
* updated eslint config
* fix the issue eslint adding ;;;; at interfaces
* first round with eslint --fix .
* removed config for unused export
* Revert "first round with eslint --fix ."
This reverts commit 77a88e0895
.
* removed config for camelCase
* for real this time, first round of eslint --fix .
* halfway to manual eslint fix
* eslint done
* added "how to setup" the hook to eslint --fix each new file before commit (if wanted)
* removed eslintrc config file duplicat
* fix human error + ignore build folder + merge overrides
* added curly brace style + eslint
* applied double quote linter rule
* added lefthook
* test precommit
* test precommit
* test precommit
* test precommit
* test precommit
* test precommit
* test precommit
* github action to run eslint
* added node_modules to ignore eslint
* different action for typescript
* no need for different glob (default src)
* node 20
* node 20
* removed no longer needed install file
* remove hooks part from README
* eslint fixes
---------
Co-authored-by: Frederico Santos <frederico.f.santos@tecnico.ulisboa.pt>
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "pokemon-rogue-battle",
|
|
"private": true,
|
|
"version": "1.0.4",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "vite",
|
|
"start:dev": "vite --mode development",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"test:cov": "vitest run --coverage",
|
|
"test:watch": "vitest watch --coverage",
|
|
"eslint": "eslint --fix ."
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
"@typescript-eslint/parser": "^7.10.0",
|
|
"@vitest/coverage-istanbul": "^1.4.0",
|
|
"axios": "^1.6.2",
|
|
"axios-cache-interceptor": "^1.3.2",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"jsdom": "^24.0.0",
|
|
"json-beautify": "^1.1.1",
|
|
"lefthook": "^1.6.12",
|
|
"phaser3spectorjs": "^0.0.8",
|
|
"pokenode-ts": "^1.20.0",
|
|
"typescript": "^5.4.5",
|
|
"typescript-eslint": "^7.10.0",
|
|
"vite": "^4.5.0",
|
|
"vite-plugin-fs": "^0.4.4",
|
|
"vitest": "^1.4.0",
|
|
"vitest-canvas-mock": "^0.3.3"
|
|
},
|
|
"dependencies": {
|
|
"@material/material-color-utilities": "^0.2.7",
|
|
"crypto-js": "^4.2.0",
|
|
"i18next": "^23.11.1",
|
|
"i18next-browser-languagedetector": "^7.2.1",
|
|
"json-stable-stringify": "^1.1.0",
|
|
"phaser": "^3.70.0",
|
|
"phaser3-rex-plugins": "^1.1.84"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"imports": {
|
|
"#app": "./src/main.js",
|
|
"#app/*": "./src/*"
|
|
}
|
|
}
|