-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "breaking-bad-voting-graphql",
"version": "1.0.0",
"description": "Breaking BAd Votaciones de los personajes en tiempo real y 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/breaking-bad-voting-graphql.git"
},
"keywords": [
"graphql",
"graphql-curso",
"breaking-bad",
"mongodb",
"votaciones",
"real-time",
"subscriptions-graphql"
],
"author": "Anartz Mugika Ledo <mugan86@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mugan86/breaking-bad-voting-graphql/issues"
},
"homepage": "https://github.com/mugan86/breaking-bad-voting-graphql#readme",
"dependencies": {
"apollo-server-express": "^2.6.7",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"graphql": "^14.3.1",
"graphql-import-node": "0.0.4",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-tools": "^4.0.5",
"http": "0.0.0",
"mongodb": "^3.2.7",
"ncp": "^2.0.0",
"subscriptions-transport-ws": "^0.9.16",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/express-graphql": "^0.8.0",
"@types/graphql": "^14.2.2",
"@types/mongodb": "^3.1.28",
"@types/node": "^12.0.10",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1"
}
}