-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "mu",
"version": "1.0.0",
"description": "🦏 A boilerplate using GraphQL and TypeScript",
"main": "index.ts",
"scripts": {
"start": "nodemon",
"generate": "gql-gen"
},
"keywords": [
"graphql",
"typescript"
],
"author": "Leonardo Maldonado <[email protected]>",
"repository": "https://github.com/leonardomso/mu.git",
"license": "MIT",
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"dotenv": "^7.0.0",
"graphql": "^14.2.1",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"graphql-yoga": "^1.17.4",
"graphqlgen": "^0.6.0-rc9",
"jsonwebtoken": "^8.5.0",
"merge-graphql-schemas": "^1.5.8",
"moment": "^2.24.0",
"mongodb": "^3.1.13",
"mongoose": "^5.4.22",
"typescript": "^3.4.2",
"validator": "^10.11.0"
},
"devDependencies": {
"@types/graphql": "^14.0.5",
"@types/mongodb": "^3.1.19",
"@types/mongoose": "^5.3.12",
"@types/node": "^11.9.5",
"babel-runtime": "^6.26.0",
"graphql-code-generator": "^0.16.1",
"graphql-codegen-typescript-common": "0.16.1",
"graphql-codegen-typescript-mongodb": "^0.16.1",
"graphql-codegen-typescript-resolvers": "^0.16.1",
"graphql-codegen-typescript-server": "^0.16.1",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2"
}
}