-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 852 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-plugin-import-graphql": "^2.7.0",
"eslint": "^5.15.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"@koa/cors": "^3.0.0",
"apollo-server-koa": "^2.4.8",
"dotenv": "^7.0.0",
"graphql": "^14.1.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.1.0",
"path-to-regexp": "^3.0.0"
}
}