-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.97 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
{
"name": "gom-api",
"version": "0.5.3",
"description": "Gom Api for Gom App (https://github.com/hecsalazarf/gom-ui)",
"author": "Héctor Salazar",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"postbuild": "copyfiles -E -f src/db/prisma/prisma-types.graphql dist/db/prisma/",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --watch --exec 'node --inspect-brk'",
"start:prod": "node dist/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prisma:deploy": "prisma deploy",
"graphql:schema": "graphql get-schema",
"graphql:binding": "graphql codegen",
"graphql:typings": "ts-node generate-graphql-typings",
"graphql:build": "npm run prisma:deploy && npm run graphql:schema && npm run graphql:binding && npm run graphql:typings"
},
"dependencies": {
"@casl/ability": "^4.1.6",
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@nestjs/graphql": "^7.6.0",
"@nestjs/platform-express": "^7.4.4",
"apollo-server-express": "^2.17.0",
"bullmq": "^1.9.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"config": "^3.3.1",
"connect-redis": "^5.0.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"csurf": "^1.11.0",
"express-session": "^1.17.1",
"html-to-text": "^5.1.1",
"ioredis": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.9.0",
"prisma-binding": "^2.3.16",
"rate-limiter-flexible": "^2.1.10",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"web-push": "^3.4.4"
},
"devDependencies": {
"@nestjs/cli": "^7.5.1",
"@nestjs/testing": "^7.4.4",
"@types/config": "0.0.36",
"@types/connect-redis": "0.0.14",
"@types/cookie": "^0.4.0",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/ioredis": "^4.17.4",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^12.12.62",
"@types/supertest": "^2.0.10",
"@types/web-push": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"copyfiles": "^2.3.0",
"eslint": "^7.9.0",
"graphql-cli": "^4.0.0",
"jest": "^26.4.2",
"prisma": "^1.34.10",
"supertest": "^4.0.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}