This repository has been archived by the owner on Jul 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.75 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
{
"private": true,
"scripts": {
"dev": "nodemon -r tsconfig-paths/register src/main.ts",
"build": "npm run build:pre && npm run build:compile && npm run build:post",
"start": "node dist/main.js",
"lint": "eslint --ext .ts,.js,.json src/",
"lint:fix": "eslint --fix --ext .ts,.js,.json src/",
"lint:report": "eslint --ext .ts,.js,.json --output-file eslint_report.json --format json src/",
"build:pre": "rimraf dist/",
"build:compile": "tsc && tsc-alias",
"build:post": "copyfiles -u 1 src/**/*.graphql dist/"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"copyfiles": "^2.4.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"@fastify/type-provider-typebox": "^2.3.0",
"@graphql-tools/load-files": "^6.6.1",
"@graphql-tools/merge": "^8.3.6",
"@graphql-tools/schema": "^9.0.4",
"@sinclair/typebox": "^0.24.44",
"amqplib": "^0.10.3",
"dataloader": "^2.1.0",
"fastify": "^4.8.1",
"graphql": "^16.6.0",
"graphql-playground-html": "^1.6.30",
"jsonwebtoken": "^8.5.1",
"mercurius": "^11.0.0",
"neat-config": "^1.0.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.7",
"pg": "^8.8.0",
"redis": "^4.3.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.10",
"winston": "^3.8.2",
"winston-console-format": "^1.0.8"
}
}