-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.77 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
{
"name": "games",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"lint": "nx workspace-lint && nx lint",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:lint": "nx affected:lint",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"prettier:check": "prettier --config .prettierrc --check \"apps/**/*.{ts,css,html,json,graphql}\"",
"prepare": "husky install",
"postinstall": "prisma generate",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"database:push": "prisma db push",
"generate:typings": "ts-node generate-typings"
},
"private": true,
"dependencies": {
"@nestjs/apollo": "^10.1.4",
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/graphql": "^10.1.5",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@prisma/client": "^4.5.0",
"apollo-server-express": "^3.11.1",
"auth0": "^2.44.0",
"cache-manager": "^5.1.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"graphql": "^16.8.1",
"graphql-scalars": "^1.20.1",
"graphql-subscriptions": "^2.0.0",
"helmet": "^6.0.0",
"jwks-rsa": "^3.0.0",
"luxon": "^3.2.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nestjs/schematics": "^9.0.0",
"@nrwl/cli": "15.0.4",
"@nrwl/eslint-plugin-nx": "15.0.4",
"@nrwl/linter": "15.0.4",
"@nrwl/nest": "15.0.4",
"@nrwl/node": "15.0.4",
"@nrwl/nx-cloud": "latest",
"@nrwl/workspace": "15.0.4",
"@types/auth0": "^2.35.7",
"@types/luxon": "^3.1.0",
"@types/node": "18.11.7",
"@types/passport-jwt": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "~8.26.0",
"eslint-config-prettier": "8.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nx": "15.0.4",
"prettier": "^2.6.2",
"prisma": "^4.5.0",
"ts-morph": "^16.0.0",
"typescript": "~4.8.2"
},
"lint-staged": {
"**/*.{json,css,scss,md,ts}": [
"yarn format:write -- --uncommitted"
],
"**/*.{ts, js}": [
"yarn affected:lint -- --uncommitted --parallel"
]
}
}