This repository was archived by the owner on Nov 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.31 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
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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "graphql-blog-api",
"version": "1.0.0",
"author": {
"email": "ofadiman@gmail.com",
"name": "Szymon Jaworski",
"url": "https://github.com/Ofadiman"
},
"description": "A content management system for blogging applications written in GraphQL.",
"license": "MIT",
"scripts": {
"build": "rimraf dist && nest build",
"db:cli": "node scripts/database/main.js",
"docker:dev": "yarn docker:up && yarn docker:logs",
"docker:logs": "docker-compose logs --follow --timestamps --tail 200 graphql-blog-api",
"docker:restart": "yarn docker:stop && yarn docker:dev",
"docker:shell": "docker-compose exec graphql-blog-api bash",
"docker:stop": "docker-compose stop",
"docker:up": "docker-compose up -d",
"lint:ci": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"predocker:restart": "rimraf dist",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"syncpack:format": "syncpack format",
"test:ci": "jest",
"test:watch": "jest --coverage --watch --runInBand"
},
"dependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/graphql": "^9.1.1",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.0.1",
"@nestjs/platform-express": "^8.0.0",
"apollo-server-express": "^3.5.0",
"bcrypt": "^5.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dataloader": "^2.0.0",
"graphql": "^15.7.2",
"graphql-scalars": "^1.13.1",
"knex": "^0.95.14",
"nestjs-knex": "^2.0.0",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.0",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.11",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"enquirer": "^2.3.6",
"eslint": "7.29.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jest-formatting": "3.0.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort-keys-fix": "1.1.1",
"eslint-plugin-typescript-sort-keys": "1.7.0",
"eslint-plugin-unicorn": "33.0.1",
"execa": "^5.1.1",
"faker": "^5.5.3",
"jest": "27.0.6",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"syncpack": "^5.8.15",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.5.2",
"yargs": "^17.2.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"private": true
}