-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
38
39
40
41
42
43
44
45
46
{
"name": "star-wars-graphql",
"version": "1.0.0",
"description": "A GraphQL API for Star Wars Facts",
"main": "src/index.js",
"scripts": {
"development": "babel-node src/index.js",
"start": "npm run development",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertfdp/star-wars-graphql.git"
},
"keywords": [
"graphql",
"star wars"
],
"author": "Albert Fernandez",
"license": "MIT",
"bugs": {
"url": "https://github.com/albertfdp/star-wars-graphql/issues"
},
"homepage": "https://github.com/albertfdp/star-wars-graphql#readme",
"dependencies": {
"babel": "^6.5.2",
"babel-preset-es2015-node5": "^1.1.2",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"express-graphql": "^0.4.9",
"graphql": "^0.4.18"
},
"devDependencies": {
"babel-core": "^6.5.2",
"mocha": "^2.4.5",
"unexpected": "^10.8.2"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"afterEach"
]
}
}