-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.94 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.94 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
{
"name": "express-apollo-prisma",
"version": "0.0.1",
"description": "Express.js, Apollo Server, and Prisma",
"keywords": [
"express",
"apollo-server",
"prisma",
"typescript",
"redis",
"graphql"
],
"hasShowcase": false,
"license": "MIT",
"main": "src/main.ts",
"scripts": {
"codegen": "graphql-codegen && npm run format:codegen",
"prepare": "npm run prisma:generate && npm run codegen",
"test": "npm run prepare && jest",
"start": "npm run prepare && prisma migrate dev && nodemon",
"dev:test": "jest",
"dev": "nodemon",
"build": "npm run prepare && tsc --project tsconfig.build.json",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "npm run lint --fix",
"format": "prettier --write . && npm run prisma:format",
"format:codegen": "prettier --write \"src/endpoints/graphql/schema/generated/**/*\"",
"prisma:format": "prisma format",
"prisma:migrate:reset": "prisma migrate reset",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:generate": "prisma generate",
"prisma:deploy": "prisma migrate deploy",
"db:seed": "ts-node src/lib/db/seed.ts",
"infrastructure:up": "docker compose up -d",
"infrastructure:pause": "docker compose stop",
"infrastructure:down": "docker compose down --remove-orphans --volumes",
"queue:run": "ts-node src/endpoints/job-generator/worker.ts"
},
"author": "",
"prisma": {
"schema": "src/lib/db/schema.prisma"
},
"devDependencies": {
"@apollo/utils.withrequired": "2.0.0",
"@graphql-codegen/cli": "2.16.4",
"@graphql-codegen/introspection": "2.2.3",
"@graphql-codegen/schema-ast": "2.6.1",
"@graphql-codegen/typescript": "2.8.7",
"@graphql-codegen/typescript-operations": "2.5.12",
"@graphql-codegen/typescript-resolvers": "2.7.12",
"@types/amqplib": "0.10.1",
"@types/body-parser": "1.19.2",
"@types/compression": "1.7.2",
"@types/cors": "2.8.13",
"@types/express": "4.17.15",
"@types/express-serve-static-core": "4.17.33",
"@types/jest": "29.2.6",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"jest": "29.3.1",
"jest-mock-extended": "3.0.1",
"nodemon": "2.0.20",
"prettier": "2.8.3",
"prisma": "4.10.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.4"
},
"dependencies": {
"@apollo/server": "4.9.3",
"@graphql-tools/merge": "8.3.15",
"@graphql-tools/schema": "9.0.13",
"@prisma/client": "4.10.0",
"@redis/client": "1.5.3",
"amqplib": "0.10.3",
"body-parser": "1.20.1",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"http": "0.0.1-security",
"redis": "4.6.2"
}
}