-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
56
57
{
"name": "mkg-bank-api",
"description": "MongoD BKoaJS Graphql Bank Example Api Server",
"author": "Marcus Vinicius Sgorla Franklin (https://github.com/kinho)",
"version": "1.0.2",
"scripts": {
"check": "tsc --pretty --noEmit",
"test": "jest --coverage",
"start": "tsx src/main.ts",
"start:dev": "tsx watch src/main.ts",
"lint": "eslint src --config eslint.config.mjs --no-ignore",
"lint:fix": "npm run lint -- --fix",
"postman:json": "gql2postman -s schema.graphql -o postman.json -p -O depth=7,includeDeprecatedFields=true,optimizeConversion=false"
},
"dependencies": {
"@apollo/server": "^4.0.0",
"@as-integrations/koa": "^1.1.1",
"@koa/cors": "^5.0.0",
"@typegoose/typegoose": "^12.8.0",
"bcrypt": "^5.1.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"graphql-relay": "^0.10.2",
"jsonwebtoken": "^9.0.2",
"koa": "^2.0.0",
"koa-bodyparser": "^4.4.1",
"mongodb": "^6.10.0",
"mongoose": "^8.7.3",
"reflect-metadata": "^0.2.2",
"tsx": "^4.19.2",
"type-graphql": "^2.0.0-rc.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"graphql-to-postman": "^0.3.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}