-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "graphql-mysql",
"version": "1.0.0",
"description": "GraphQL API with Relational Database (MySQL)",
"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/graphql-mysql.git"
},
"keywords": [],
"author": "Anartz Mugika Ledo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mugan86/graphql-mysql/issues"
},
"homepage": "https://github.com/mugan86/graphql-mysql#readme",
"dependencies": {
"@graphql-tools/load-files": "^6.0.13",
"@graphql-tools/merge": "^6.0.13",
"apollo-server-express": "^2.15.1",
"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.14",
"http": "0.0.0",
"mysql": "^2.18.1",
"ncp": "^2.0.0",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/mysql": "^2.15.10",
"@types/node": "^12.0.4",
"nodemon": "^2.0.1",
"ts-node": "^8.5.4",
"typescript-tslint-plugin": "0.5.5"
}
}