This repository was archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.92 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.92 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "comic-db",
"private": true,
"scripts": {
"prebuild": "run-s clean",
"build": "nest build",
"dev": "nest start --watch",
"debug": "nest start --watch --debug ",
"start": "nest start",
"start:prod": "node dist/main",
"test:local:medium": "scripty",
"test:local:unit": "yarn run test:unit",
"test:medium": "scripty",
"test:unit": "scripty",
"schema-generate": "ts-node src/scripts/create-graphql-schema.ts",
"clean": "rimraf dist coverage",
"ts-check": "tsc --noEmit",
"lint": "scripty",
"lint:circleci": "scripty",
"lint:eslint": "scripty",
"lint:hadolint": "scripty",
"lint:prettier": "scripty",
"fmt": "run-s -cn fmt:*",
"fmt:eslint": "yarn lint:eslint --fix",
"fmt:prettier": "yarn lint:prettier --write"
},
"dependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.0.0",
"@nestjs/graphql": "^7.7.0",
"@nestjs/mongoose": "^7.0.2",
"@nestjs/passport": "^7.1.0",
"@nestjs/platform-express": "^7.0.0",
"@nestjs/typeorm": "^7.1.4",
"apollo-server-express": "^2.18.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"graphql": "^15.3.0",
"graphql-relay": "^0.6.0",
"graphql-tools": "^6.2.3",
"jdenticon": "^3.0.1",
"js-base64": "^3.5.2",
"jwks-rsa": "^1.10.1",
"mongodb": "^3.6.2",
"mongodb-uri": "^0.9.7",
"mongoose": "^5.10.7",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.3.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"typeorm": "^0.2.26",
"urlcat": "^2.0.4",
"validator": "^13.1.17"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ignoregen/cli": "^1.0.0",
"@nestjs/cli": "^7.5.1",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^7.0.0",
"@shopify/eslint-plugin": "^39.0.0",
"@shopify/prettier-config": "^1.1.1",
"@types/express": "^4.17.3",
"@types/faker": "^5.1.2",
"@types/graphql-relay": "^0.6.0",
"@types/jest": "26.0.14",
"@types/mongodb-uri": "^0.9.0",
"@types/mongoose": "5.7.36",
"@types/node": "^14.11.2",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/supertest": "^2.0.8",
"@types/validator": "^13.1.0",
"axios": "^0.21.0",
"dotenv-cli": "^4.0.0",
"eslint": "7.10.0",
"faker": "^5.1.0",
"jest": "26.4.2",
"jest-junit": "^12.0.0",
"mongodb-memory-server": "^6.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"prettier-plugin-optipack": "^1.1.2",
"prettier-plugin-organize-imports": "^1.1.1",
"rimraf": "^3.0.2",
"scripty": "^2.0.0",
"supertest": "^5.0.0",
"ts-jest": "26.4.0",
"ts-loader": "^8.0.4",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
}
}