-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 978 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
37
38
39
{
"name": "bibleapi-graphql",
"version": "0.0.2",
"description": "Bible API GraphQL",
"author": "Ruslan Kazakov",
"license": "MIT",
"scripts": {
"start": "babel-node --presets es2015 lib/index.js",
"dev": "nodemon --exec babel-node --presets es2015 lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rkazakov/bibleapi-graphql.git"
},
"keywords": [
"bible",
"api",
"graphql"
],
"bugs": {
"url": "https://github.com/rkazakov/bibleapi-graphql/issues"
},
"homepage": "https://github.com/rkazakov/bibleapi-graphql#readme",
"dependencies": {
"bible-passage-reference-parser": "^2.0.1",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-graphql": "^0.5.3",
"graphql": "^0.6.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.30"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"nodemon": "^1.9.2"
}
}