-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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": "learn-apollo",
"version": "1.0.0",
"description": "Learn Apollo Server",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"watch": "babel-watch src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib"
},
"author": "namirsab",
"license": "ISC",
"dependencies": {
"babel-core": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-watch": "^2.0.3-rc0",
"body-parser": "^1.15.2",
"eslint": "^3.5.0",
"express": "^4.14.0",
"graphql": "^0.7.0",
"graphql-server-express": "^0.4.3",
"graphql-tools": "^0.7.2",
"lodash": "^4.16.1",
"request": "^2.75.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0"
}
}