-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "apollo-server-nutrition-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"format": "prettier --write $PWD/'src/**/*.{js,ts}'",
"lint": "eslint 'src/**/*.{js,ts}'",
"clean": "rm -rf dist",
"codegen": "graphql-codegen --config codegen.yml"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.5.10",
"@graphql-tools/load": "^7.8.5",
"@graphql-tools/schema": "^9.0.9",
"@prisma/client": "^4.6.1",
"apollo-server": "^3.11.1",
"graphql": "^16.6.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.11",
"@graphql-codegen/typescript": "^2.8.1",
"@graphql-codegen/typescript-resolvers": "^2.7.6",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}