mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-27 01:48:16 +03:00
32 lines
885 B
JSON
32 lines
885 B
JSON
{
|
|
"name": "fe-app-podkop",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"format": "prettier --write src",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
"build": "tsup src/main.ts",
|
|
"dev": "tsup src/main.ts --watch",
|
|
"test": "vitest",
|
|
"ci": "yarn format && yarn lint --max-warnings=0 && yarn test --run && yarn build",
|
|
"watch:sftp": "node watch-upload.js"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "8.45.0",
|
|
"@typescript-eslint/parser": "8.45.0",
|
|
"chokidar": "4.0.3",
|
|
"dotenv": "17.2.3",
|
|
"eslint": "9.36.0",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"glob": "11.0.3",
|
|
"prettier": "3.6.2",
|
|
"ssh2-sftp-client": "12.0.1",
|
|
"tsup": "8.5.0",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.45.0",
|
|
"vitest": "3.2.4"
|
|
}
|
|
}
|