-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "api_graphql",
"version": "1.0.0",
"description": "Basic API with express+graphql",
"main": "src/app.js",
"scripts": {
"start": "NODE_ENV=development nodemon src/app.js --exec babel-node",
"serve": "NODE_ENV=production node dist/app.js",
"clean": "rimraf dist/*",
"build": "npm run clean && babel src -d dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc src"
},
"author": "Maximiliano Duthey <[email protected]>",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/node": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/register": "^7.0.0-beta.49",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2"
},
"dependencies": {
"apollo-server-express": "^1.3.6",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.2",
"lodash": "^4.17.10"
}
}