generated from async-devil/fastify-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "fastify-gql-ts-template",
"version": "1.0.0",
"license": "MIT",
"main": "./dist/index.js",
"author": "async-devil",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/async-devil/fastify-gql-ts-template.git"
},
"bugs": {
"url": "https://github.com/async-devil/fastify-gql-ts-template/issues"
},
"keywords": [
"Fastify",
"Typescript",
"GraphQL",
"Template",
"Docker"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"start": "node dist/index.js",
"start:dev": "nodemon src/index.ts",
"test": "jest",
"test:cov": "jest --coverage"
},
"dependencies": {
"@types/node": "^18.11.3",
"fastify": "^4.9.2",
"graphql": "^16.6.0",
"mercurius": "^11.4.0",
"mercurius-validation": "^3.0.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security-node": "^1.1.1",
"eslint-plugin-sonarjs": "^0.16.0",
"jest": "^29.2.1",
"mercurius-integration-testing": "^6.0.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
}
}