2020-09-15 19:26:47 +00:00
{
"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" ,
"scripts" : {
2023-01-04 15:59:26 +00:00
"lint" : "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check 'src/**/*.ts'" ,
2020-12-20 21:16:57 +00:00
"fix" : "prettier --write src && eslint --fix src" ,
2023-11-17 04:43:40 +00:00
"api-test" : "jest -i follow.spec.ts && jest -i post.spec.ts && jest -i comment.spec.ts && jest -i private_message.spec.ts && jest -i user.spec.ts && jest -i community.spec.ts && jest -i image.spec.ts" ,
2023-11-17 09:55:26 +00:00
"api-test-follow" : "jest -i follow.spec.ts" ,
2023-11-09 11:03:25 +00:00
"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" ,
2023-11-17 04:43:40 +00:00
"api-test-private-message" : "jest -i private_message.spec.ts" ,
"api-test-image" : "jest -i image.spec.ts"
2020-09-15 19:26:47 +00:00
} ,
"devDependencies" : {
2024-03-01 18:45:06 +00:00
"@types/jest" : "^29.5.12" ,
2024-04-10 14:59:46 +00:00
"@types/node" : "^20.12.4" ,
"@typescript-eslint/eslint-plugin" : "^7.5.0" ,
"@typescript-eslint/parser" : "^7.5.0" ,
2023-11-17 04:43:40 +00:00
"download-file-sync" : "^1.0.4" ,
2024-03-05 10:34:57 +00:00
"eslint" : "^8.57.0" ,
2024-03-18 09:36:49 +00:00
"eslint-plugin-prettier" : "^5.1.3" ,
2023-05-10 20:31:37 +00:00
"jest" : "^29.5.0" ,
2024-04-10 14:59:46 +00:00
"lemmy-js-client" : "0.19.4-alpha.16" ,
2024-03-01 18:45:06 +00:00
"prettier" : "^3.2.5" ,
2023-05-10 20:31:37 +00:00
"ts-jest" : "^29.1.0" ,
2024-04-10 14:59:46 +00:00
"typescript" : "^5.4.4"
2020-09-15 19:26:47 +00:00
}
}