forked from nosbog/rsschool-nodejs-task-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.4 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
{
"name": "nodejs-task-graphql-basics",
"version": "1.0.0",
"description": "nodejs-task-graphql-basics",
"main": "app.ts",
"nyc": {
"sourceMap": false,
"instrument": false
},
"directories": {
"test": "test"
},
"type": "module",
"prisma": {
"seed": "ts-node --esm prisma/seed.ts"
},
"scripts": {
"test-integrity": "node integrity.cjs",
"test-queries": "npm run build:ts && tap --ts \"test/routes/gql-queries.test.ts\"",
"test-mutations": "npm run build:ts && tap --ts \"test/routes/gql-mutations.test.ts\"",
"test-rule": "npm run build:ts && tap --ts \"test/routes/gql-rule.test.ts\"",
"test-loader": "npm run build:ts && tap --ts \"test/routes/gql-loader.test.ts\"",
"test-loader-prime": "npm run build:ts && tap --ts \"test/routes/gql-loader-prime.test.ts\"",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js"
},
"engines": {
"node": ">=18.16.0 <19.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/env": "^4.2.0",
"@fastify/sensible": "^5.0.0",
"@fastify/swagger": "^8.6.0",
"@fastify/swagger-ui": "^1.9.0",
"@fastify/type-provider-typebox": "^3.2.0",
"@prisma/client": "^5.0.0",
"dataloader": "^2.1.0",
"fastify": "^4.0.0",
"fastify-cli": "^5.5.1",
"fastify-plugin": "^4.0.0",
"graphql": "^16.6.0",
"graphql-depth-limit": "^1.1.0",
"graphql-parse-resolve-info": "^4.13.0"
},
"devDependencies": {
"@types/graphql-depth-limit": "^1.1.3",
"@types/node": "^18.0.0",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"concurrently": "^7.0.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"fastify-tsconfig": "^1.0.1",
"npm": "^9.8.0",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@sinclair/typebox": "^0.28.20"
},
"tap": {
"node-arg": [
"--no-warnings",
"--loader",
"ts-node/esm"
]
}
}