mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-02 09:11:22 +00:00
37 lines
1.4 KiB
JSON
37 lines
1.4 KiB
JSON
{
|
|||
"name": "api_tests",
|
|||
"version": "0.0.1",
|
|||
"description": "API tests for lemmy backend",
|
|||
"main": "index.js",
|
|||
"repository": "https://github.com/LemmyNet/lemmy",
|
|||
"author": "Dessalines",
|
|||
"license": "AGPL-3.0",
|
|||
"packageManager": "pnpm@9.12.0",
|
|||
"scripts": {
|
|||
"lint": "tsc --noEmit && eslint --report-unused-disable-directives && prettier --check 'src/**/*.ts'",
|
|||
|
"fix": "prettier --write src && eslint --fix src",
|
||
"api-test": "jest -i follow.spec.ts && jest -i image.spec.ts && jest -i user.spec.ts && jest -i private_message.spec.ts && jest -i community.spec.ts && jest -i post.spec.ts && jest -i comment.spec.ts ",
|
|||
"api-test-follow": "jest -i follow.spec.ts",
|
|||
"api-test-comment": "jest -i comment.spec.ts",
|
|||
"api-test-post": "jest -i post.spec.ts",
|
|||
"api-test-user": "jest -i user.spec.ts",
|
|||
"api-test-community": "jest -i community.spec.ts",
|
|||
"api-test-private-message": "jest -i private_message.spec.ts",
|
|||
"api-test-image": "jest -i image.spec.ts"
|
|||
},
|
|||
"devDependencies": {
|
|||
"@types/jest": "^29.5.12",
|
|||
"@types/node": "^22.3.0",
|
|||
"@typescript-eslint/eslint-plugin": "^8.1.0",
|
|||
"@typescript-eslint/parser": "^8.1.0",
|
|||
"eslint": "^9.9.0",
|
|||
|
"eslint-plugin-prettier": "^5.1.3",
|
||
Upgrade api_test deps (#2850)
* Upgrade api_test deps
* Fix cargo fmt.
* Try to trigger a new format
|
"jest": "^29.5.0",
|
||
"lemmy-js-client": "0.20.0-alpha.11",
|
|||
"prettier": "^3.2.5",
|
|||
Upgrade api_test deps (#2850)
* Upgrade api_test deps
* Fix cargo fmt.
* Try to trigger a new format
|
"ts-jest": "^29.1.0",
|
||
|
"typescript": "^5.5.4",
|
||
"typescript-eslint": "^8.1.0"
|
|||
}
|
|||
}
|