-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.38 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "fbi-project-graphql-prisma",
"version": "3.1.0",
"description": "GraphQL API Server and Prisma ORM project template",
"main": "index.js",
"scripts": {
"start": "DOCKER_HOST_IP=docker.for.mac.localhost docker-compose up -d",
"db:up": "cd dal && DOCKER_HOST_IP=docker.for.mac.localhost docker-compose up -d && docker ps",
"db:init": "cd dal && prisma deploy",
"db:down": "cd dal && docker-compose down && docker ps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neikvon/fbi-project-graphql-prisma.git"
},
"keywords": [
"graphql"
],
"author": "neikvon",
"license": "MIT",
"bugs": {
"url": "https://github.com/neikvon/fbi-project-graphql-prisma/issues"
},
"homepage": "https://github.com/neikvon/fbi-project-graphql-prisma#readme",
"dependencies": {
"apollo-server": "^2.9.15",
"graphql": "^14.5.8",
"graphql-middleware": "^4.0.2",
"merge-graphql-schemas": "1.7.6",
"prisma-client-lib": "^1.34.10",
"winston": "3.2.1",
"graphql-import": "^0.7.1"
},
"devDependencies": {
"@graphql-codegen/cli": "1.11.2",
"@graphql-codegen/core": "1.11.2",
"@graphql-codegen/typescript": "1.11.2",
"@graphql-codegen/typescript-operations": "1.11.2",
"@graphql-codegen/typescript-resolvers": "1.11.2",
"@types/aws-lambda": "8.10.39",
"@types/node": "13.1.5",
"@types/node-fetch": "2.5.4",
"@types/ws": "6.0.4",
"deepmerge": "4.2.2",
"fs-extra": "8.1.0",
"globby": "11.0.0",
"graphql-binding": "2.5.2",
"graphql-import": "0.7.1",
"js-yaml": "3.13.1",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"prisma": "1.34.10",
"prisma-generate-schema": "1.34.10",
"rimraf": "3.0.0",
"tslint": "5.20.1",
"tslint-config-standard": "9.0.0",
"typescript": "3.7.4"
},
"fbi": {
"template": {
"name": "fbi-project-graphql-prisma"
},
"tasks": {
"build": {
"alias": "b",
"desc": "Build the project for the specified environment."
},
"serve": {
"alias": "s",
"desc": "Compile the code and start the development server."
},
"gen-db": {
"alias": "gd",
"desc": "Generate database schema, database client code and API schema based on database model."
},
"gen-api": {
"alias": "ga",
"desc": "Generate type-safe API resolvers."
}
}
}
}