-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (43 loc) · 1.23 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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "Graphql server running on express with a simple schema and in-memory database.",
"main": "index.js",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator",
"transform-object-rest-spread",
"transform-runtime"
]
},
"scripts": {
"build": "babel src -d build",
"postinstall": "npm run build",
"start": "node build/index.js",
"update-schema": "babel-node ./scripts/updateSchema.js",
"dev": "babel-watch src/index.js"
},
"author": "Ngugi",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"basic-auth": "^2.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^7.0.0"
}
}