-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "mercurius-pothos",
"version": "0.2.0",
"description": "Mercurius Pothos Prisma PoC",
"main": "src/server.ts",
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"dev": "nodemon --watch src && lint && format",
"start": "nodemon ./src/server.ts | pino-pretty",
"format": "prettier --cache --write \"src/**/*.ts\"",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"check:all": "yarn lint && yarn format"
},
"license": "MIT",
"dependencies": {
"@graphql-yoga/node": "^3.9.1",
"@pothos/core": "^3.30.0",
"@pothos/plugin-prisma": "^3.51.1",
"@prisma/client": "^4.15.0",
"fastify": "~4.17.0",
"mercurius": "~13.0.0"
},
"devDependencies": {
"@types/node": "^16.18.34",
"@typescript-eslint/eslint-plugin": "~5.59.9",
"@typescript-eslint/parser": "~5.59.9",
"eslint": "~8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"graphql": "^16.6.0",
"husky": "~8.0.3",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"prettier-plugin-import-sort": "^0.0.7",
"prisma": "^4.15.0",
"ts-node": "^10.9.1",
"typescript": "~5.1.3"
},
"importSort": {
".ts": {
"style": "module",
"parser": "typescript"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}