-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "the-microservices-info_backend",
"repository": "git@github.com:the-microservices-info/backend.git",
"author": "João Daniel <jotaf.daniel@gmail.com>",
"license": "MIT",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"format": "prettier --config .prettierrc 'src/**/*' --write",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/jest": "^26.0.16",
"@types/node-mongodb-fixtures": "^3.2.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"node-mongodb-fixtures": "^3.2.8",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa__cors": "^3.0.2",
"@types/mongodb": "^3.5.34",
"@types/node": "^14.14.10",
"@types/validatorjs": "^3.15.0",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"mongodb": "^3.6.3",
"typescript": "^4.1.2",
"validatorjs": "^3.22.1"
}
}