-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "fbi-project-graphql",
"version": "0.1.1",
"description": "GraphQL API Server template",
"main": "index.js",
"scripts": {
"start": "pm2 start pm2.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neikvon/fbi-project-graphql.git"
},
"keywords": [
"graphql"
],
"author": "neikvon",
"license": "MIT",
"bugs": {
"url": "https://github.com/neikvon/fbi-project-graphql/issues"
},
"homepage": "https://github.com/neikvon/fbi-project-graphql#readme",
"dependencies": {
"graphql-yoga": "1.16.9",
"merge-graphql-schemas": "1.5.8",
"winston": "3.1.0"
},
"devDependencies": {
"@types/aws-lambda": "8.10.17",
"@types/node": "10.12.18",
"@types/ws": "6.0.1",
"deepmerge": "3.0.0",
"fs-extra": "7.0.1",
"globby": "8.0.1",
"graphql": "14.0.2",
"graphql-binding": "2.3.8",
"graphql-import": "0.7.1",
"graphqlgen": "0.2.12",
"nodemon": "1.18.9",
"prisma-binding": "2.2.12",
"prisma-generate-schema": "1.23.2",
"rimraf": "2.6.2",
"tslint": "5.12.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.2.2"
},
"fbi": {
"template": {
"name": "fbi-project-graphql"
},
"tasks": {
"build": {
"alias": "b",
"desc": "Build the project for the specified environment."
},
"serve": {
"alias": "s",
"desc": "Compile the code and start the development server."
},
"generate": {
"alias": "g",
"desc": "Generate type-safe resolvers based on your GraphQL Schema in TypeScript."
}
}
}
}