-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.4 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.4 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
{
"name": "fastify-graphql",
"version": "1.0.0",
"description": "Fastify GraphQL",
"main": "dist/index.js",
"scripts": {
"dev": "NODE_ENV=staging ts-node-dev --trace-warnings --respawn --no-notify --files --watch graphql --ignore-watch node_modules src/index.ts",
"dev:prod": "ts-node-dev --trace-warnings --respawn --no-notify --files --watch graphql --ignore-watch node_modules src/index.ts",
"start": "node dist/index.js",
"build": "rm -rf dist && tsc -b --pretty --listEmittedFiles",
"debug": "node --inspect -r ts-node/register src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint -- --fix",
"test": "ava",
"prisma:migrate": "prisma migrate dev --name"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dannysofftie/fastify-graphql.git"
},
"keywords": [
"fastify",
"graphql",
"prisma",
"postgresql"
],
"author": "Danny Sofftie",
"license": "MIT",
"bugs": {
"url": "https://github.com/dannysofftie/fastify-graphql/issues"
},
"homepage": "https://github.com/dannysofftie/fastify-graphql#readme",
"dependencies": {
"@prisma/client": "^2.30.3",
"altair-fastify-plugin": "^4.0.9",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"fastify": "^3.21.0",
"fastify-cors": "^6.0.2",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.2.3",
"firebase-admin": "^9.11.1",
"graphql": "^15.5.3",
"graphql-middleware": "^6.1.6",
"graphql-shield": "^7.5.0",
"graphql-tag": "^2.12.5",
"html-minifier": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mercurius": "^8.2.0",
"mercurius-codegen": "^2.0.0",
"module-alias": "^2.2.2",
"node-xlsx": "^0.17.1",
"nodemailer": "^6.6.3",
"prisma-dbml-generator": "^0.7.0",
"prisma-docs-generator": "^0.4.0",
"puppeteer": "^10.2.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/ejs": "^3.1.0",
"@types/html-minifier": "^4.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/lru-cache": "^5.1.1",
"@types/module-alias": "^2.0.1",
"@types/node": "^14.14.35",
"@types/node-xlsx": "^0.15.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"prisma": "^2.30.3",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
}
}