pokerogue/package.json

60 lines
1.5 KiB
JSON
Raw Normal View History

2023-03-28 14:54:52 -04:00
{
2023-04-03 20:47:41 -04:00
"name": "pokemon-rogue-battle",
2023-03-28 14:54:52 -04:00
"private": true,
2024-04-28 20:45:04 -04:00
"version": "1.0.4",
2023-03-28 14:54:52 -04:00
"type": "module",
"scripts": {
"start": "vite",
"start:dev": "vite --mode development",
2023-03-28 14:54:52 -04:00
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"test:silent": "vitest run --silent",
2024-05-24 17:03:22 +02:00
"eslint": "eslint --fix .",
"eslint-ci": "eslint .",
"docs": "typedoc"
2023-03-28 14:54:52 -04:00
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitest/coverage-istanbul": "^1.4.0",
2023-11-30 16:37:16 -05:00
"axios": "^1.6.2",
"axios-cache-interceptor": "^1.3.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^24.0.0",
2023-03-31 16:04:39 -04:00
"json-beautify": "^1.1.1",
"lefthook": "^1.6.12",
"phaser3spectorjs": "^0.0.8",
2023-11-30 16:37:16 -05:00
"pokenode-ts": "^1.20.0",
"typedoc": "^0.25.13",
"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"
2023-03-28 14:54:52 -04:00
},
"dependencies": {
2023-11-23 23:52:13 -05:00
"@material/material-color-utilities": "^0.2.7",
2023-12-26 14:49:23 -05:00
"crypto-js": "^4.2.0",
"i18next": "^23.11.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-korean-postposition-processor": "^1.0.0",
2023-11-30 16:37:16 -05:00
"json-stable-stringify": "^1.1.0",
"phaser": "^3.70.0",
2023-03-31 16:04:39 -04:00
"phaser3-rex-plugins": "^1.1.84"
},
"engines": {
"node": ">=20.0.0"
},
"imports": {
"#app": "./src/main.js",
"#app/*": "./src/*"
2023-03-28 14:54:52 -04:00
}
}