-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.99 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
{
"name": "graphql-api-ts-ddd-clean-architecture",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build:graphql:schema": "node scripts/buildSchema.js",
"build:graphql": "run-s build:graphql:* && mkdir -p dist && cp src/*.graphql dist/ && graphql-codegen --config codegen.yml",
"build:typescript": "tsc",
"watch:graphql": "nodemon --watch src --ext graphql --ignore \"*.generated.*\" --exec \"npm run build:graphql\"",
"watch:typescript": "tsc --watch --preserveWatchOutput",
"test": "jest --verbose",
"test:watch": "jest --watch --verbose",
"start:node": "wait-on dist/index.js && nodemon --ext js,graphql,json dist/index.js",
"start": "rm -fr dist && mkdir -p dist && run-p -l watch:* start:node",
"format": "prettier --write \"**/*.ts\" \"**/*.graphql\"",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check \"**/*.graphql\"",
"lint:eslint": "eslint \"./src/\" --ext ts --max-warnings=0"
},
"keywords": [],
"author": "Petar Ivaylov Ivanov",
"license": "ISC",
"dependencies": {
"@apollo/server": "4.7.1",
"graphql": "16.6.0",
"reflect-metadata": "0.1.13",
"tsyringe": "4.8.0"
},
"devDependencies": {
"@graphql-codegen/cli": "4.0.0",
"@graphql-codegen/typescript": "4.0.0",
"@graphql-codegen/typescript-resolvers": "4.0.0",
"@graphql-tools/load-files": "7.0.0",
"@graphql-tools/merge": "9.0.0",
"@tsconfig/node16": "1.0.4",
"@types/jest": "29.5.3",
"@types/node": "20.2.4",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.41.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.6.1",
"nodemon": "2.0.22",
"npm-run-all": "4.1.5",
"prettier-eslint": "15.0.1",
"ts-jest": "29.1.1",
"typescript": "5.0.4",
"wait-on": "7.0.1"
}
}