-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "domini-directo-graphql",
"version": "1.0.0",
"description": "Hola Mundo con MongoDB en GraphQL",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc -p . && ncp src/schema build/schema",
"start:dev": "npm run build:dev",
"build:dev": "nodemon \"src/server.ts\" --exec \"ts-node\" src/server.ts -e ts,graphql,json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mugan86/domini-directo-graphql.git"
},
"keywords": [
"graphql",
"graphql-curso",
"hello-world",
"mongodb"
],
"author": "Anartz Mugika Ledo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mugan86/domini-directo-graphql/issues"
},
"homepage": "https://github.com/mugan86/domini-directo-graphql#readme",
"dependencies": {
"@graphql-tools/load-files": "^6.0.15",
"@graphql-tools/merge": "^6.0.15",
"apollo-server-express": "^2.16.1",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-import": "^1.0.2",
"graphql-import-node": "0.0.4",
"graphql-merge-resolvers": "^1.1.16",
"graphql-playground-middleware-express": "^1.7.18",
"graphql-tools": "^6.0.15",
"mongodb": "^3.5.9",
"ncp": "^2.0.0",
"subscriptions-transport-ws": "^0.9.17",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/compression": "1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/node": "^14.0.26",
"@types/mongodb": "^3.5.25",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript-tslint-plugin": "0.5.5"
}
}