-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "graphql-sql-server",
"version": "1.0.0",
"description": "A GraphQL SQL server.",
"main": "index.js",
"scripts": {
"start": "node run server",
"server": "nodemon --exec babel-node index.js"
},
"keywords": [
"graphql",
"express",
"react",
"boilerplate",
"server",
"knex"
],
"author": "John Murphy <john.softek@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-stage-2": "^7.0.0",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.6.12",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"knex": "^0.15.2",
"lodash": "~> 4.17.13",
"merge-graphql-schemas": "^1.5.8",
"mssql": "4.1.0",
"nodemon": "^1.18.6",
"sqlite3": "^4.0.4",
"tedious": "^2.6.4"
},
"devDependencies": {
"@babel/node": "^7.0.0"
}
}