2020-09-15 15:26:47 -04: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 10:59:26 -05:00
"lint" : "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check 'src/**/*.ts'" ,
2020-12-20 16:16:57 -05:00
"fix" : "prettier --write src && eslint --fix src" ,
2022-03-25 15:00:33 -04: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 15:26:47 -04:00
} ,
"devDependencies" : {
2021-05-28 11:46:23 -04:00
"@types/jest" : "^26.0.23" ,
2022-10-27 05:24:07 -04:00
"@typescript-eslint/eslint-plugin" : "^5.21.0" ,
"@typescript-eslint/parser" : "^5.21.0" ,
"eslint" : "^8.25.0" ,
"eslint-plugin-prettier" : "^4.0.0" ,
2021-07-06 10:57:54 -04:00
"jest" : "^27.0.6" ,
2023-04-26 00:26:10 -04:00
"lemmy-js-client" : "0.17.2-rc.11" ,
2020-09-15 15:26:47 -04:00
"node-fetch" : "^2.6.1" ,
2022-07-29 23:55:59 -04:00
"prettier" : "^2.7.1" ,
2021-07-06 10:57:54 -04:00
"ts-jest" : "^27.0.3" ,
2022-10-27 05:24:07 -04:00
"typescript" : "^4.8.4"
2020-09-15 15:26:47 -04:00
}
}