-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "node-apollo-ts-starter",
"version": "1.0.0",
"description": "Node, Typescript, Apollo server, ESLint, Prettier, ESM, Codegen",
"keywords": [
"apollo-server",
"typescript",
"nodejs"
],
"author": "Mustafa Celik <celikmus@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/celikmus/apollo-node-ts-starter.git"
},
"homepage": "https://github.com/celikmus/apollo-node-ts-starter.git#readme",
"main": "index.ts",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"start": "nodemon --watch \"*.ts\" --exec \"node --experimental-specifier-resolution=node --loader ts-node/esm\" ./src/index.ts",
"eslint:fix": "eslint --fix",
"build": "tsc -p tsconfig.json"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.1",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-resolvers": "^2.7.3",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"apollo-server": "^3.10.2",
"graphql": "^16.6.0"
}
}