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" ,
2022-03-25 19:00:33 +00:00
"api-test" : "jest -i follow.spec.ts && jest -i src/post.spec.ts && jest -i comment.spec.ts && jest -i private_message.spec.ts && jest -i user.spec.ts && jest -i community.spec.ts"
2020-09-15 19:26:47 +00:00
} ,
"devDependencies" : {
2023-05-10 20:31:37 +00:00
"@types/jest" : "^29.5.1" ,
"@types/node" : "^20.1.2" ,
"@typescript-eslint/eslint-plugin" : "^5.59.5" ,
"@typescript-eslint/parser" : "^5.59.5" ,
"eslint" : "^8.40.0" ,
2022-10-27 09:24:07 +00:00
"eslint-plugin-prettier" : "^4.0.0" ,
2023-05-10 20:31:37 +00:00
"jest" : "^29.5.0" ,
"lemmy-js-client" : "0.17.2-rc.13" ,
"prettier" : "^2.8.8" ,
"ts-jest" : "^29.1.0" ,
"typescript" : "^5.0.4"
2020-09-15 19:26:47 +00:00
}
}