Skip to content

Commit

Permalink
chore: add supertest
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Makila committed Sep 13, 2020
1 parent 7211cb3 commit b6d283b
Show file tree
Hide file tree
Showing 2 changed files with 2,033 additions and 75 deletions.
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"name": "roster-converter",
"version": "1.0.0",
"main": "index.js",
"main": "./dist/server.js",
"types": "./dist/server.d.ts",
"repository": "https://github.com/GitHug/roster-converter.git",
"author": "Fredrik Makila <fredrik@takanoha.io>",
"license": "MIT",
"scripts": {
"dev": "nodemon index.ts",
"dev": "nodemon src/server.ts",
"cm": "git-cz",
"build": "tsc --project ./"
"build": "tsc --project ./",
"test": "jest",
"lint": "eslint '*.{js,ts}' '*/**/*.{js,ts}' --ignore-pattern '/dist/*'"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
Expand All @@ -17,6 +20,7 @@
"@types/jest": "^26.0.13",
"@types/multer": "^1.4.4",
"@types/node": "^14.6.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"commitizen": "^4.2.1",
Expand All @@ -25,10 +29,12 @@
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"standard-version": "^9.0.0",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
Expand Down
Loading

0 comments on commit b6d283b

Please sign in to comment.