-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 962 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
34
35
36
{
"name": "odoo-graphql",
"version": "1.0.0",
"description": "GraphQL API for Odoo",
"main": "index.js",
"repository": "https://github.com/emmanuelvacher/odoo-graphql",
"author": "Emmanuel Vacher",
"license": "MIT",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"babel-plugin-inline-import": "^2.0.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1",
"body-parser": "^1.17.2",
"cors": "^2.8.3",
"dataloader": "^1.4.0",
"dotenv": "^5.0.0",
"express": "^4.15.3",
"express-graphql": "^0.6.6",
"graphql": "^0.10.1",
"graphql-tag": "^2.7.3",
"graphql-tools": "^1.0.0",
"http": "^0.0.0",
"lodash": "^4.17.5",
"xmlrpc": "^1.3.2"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0"
}
}