-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
45
46
{
"name": "navitia-graphql",
"version": "1.0.0",
"description": "Navitia GraphQL overlay",
"main": "index.js",
"scripts": {
"precommit": "npm run test",
"lint:flow": "flow",
"lint:eslint": "eslint .",
"lint": "npm run -s lint:eslint && npm run -s lint:flow",
"start": "babel-node index.js",
"start:debug": "NODE_ENV=debug npm run start -s",
"test": "npm run -s lint"
},
"keywords": [
"graphql",
"navitia",
"public",
"transport"
],
"author": "Vincent Catillon",
"license": "MIT",
"homepage": "https://github.com/VincentCATILLON/navitia-graphql#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.68.0",
"lint-staged": "^7.0.0"
}
}