-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hbk-api",
"version": "3.0.0-dev",
"license": "MIT",
"main": "src",
"private": true,
"scripts": {
"build": "backpack build",
"start": "node ./build/main.js",
"dev": "backpack --inspect",
"test": "NODE_ENV=test && jest --maxWorkers=50%"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.6",
"@types/express-jwt": "^0.0.42",
"@types/faker": "^5.1.4",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/mongodb": "^3.5.33",
"@types/mongoose": "5.10.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.7",
"@types/object-hash": "^1.3.4",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"awesome-typescript-loader": "^5.2.1",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"dependencies": {
"@typegoose/typegoose": "^7.4.2",
"apollo-server-express": "^2.19.0",
"backpack-core": "^0.8.4",
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"faker": "^5.1.0",
"graphql": "^15.4.0",
"helmet": "^4.2.0",
"jwks-rsa": "^1.11.0",
"lodash": "^4.17.20",
"moment": "^2.26.0",
"mongodb": "^3.6.3",
"mongoose": "^5.10.15",
"morgan": "^1.10.0",
"object-hash": "^2.0.3",
"reflect-metadata": "^0.1.13",
"sift": "^13.4.0",
"type-graphql": "^1.1.1",
"validator": "^13.1.17"
}
}