-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.63 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
{
"name": "prisma-graphql-yoga-graphql-code-gen",
"version": "1.0.0",
"main": "app.ts",
"repository": "https://github.com/macoto1995/prisma-graphql-yoga-graphql-code-gen.git",
"author": "Makoto <adosute07@gmail.com>",
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^9.0.12",
"@prisma/client": "4.7.1",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"graphql-yoga": "^3.1.1",
"prisma": "^4.7.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.16.1",
"@graphql-codegen/import-types-preset": "^2.2.6",
"@graphql-codegen/introspection": "2.2.3",
"@graphql-codegen/typescript": "2.8.5",
"@graphql-codegen/typescript-operations": "^2.5.10",
"@graphql-codegen/typescript-resolvers": "2.7.10",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.11.13",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "2.8.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --exit-child --respawn src/main.ts",
"start": "ts-node src/main.ts",
"generate": "graphql-codegen",
"codegen": "graphql-codegen --config codegen.ts"
},
"prisma": {
"seed": "ts-node prisma/seeds/development.ts"
}
}