-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.15 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "using-feathersjs-apollo",
"description": "Functional demo using feathersjs, graphql, apollo, ...",
"version": "1.0.0",
"homepage": "https://using-feathers-apollo.herokuapp.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/CapgeminiNorway/using-feathers-apollo-graphql.git"
},
"main": "src",
"keywords": [
"feathers",
"feathersjs",
"graphql",
"apollo",
"apollo-server"
],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "8.11.x",
"yarn": "1.6.x",
"npm": "6.0.x"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"start": "babel-node src/",
"dev": "nodemon src/ --exec babel-node --presets es2015",
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.5",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.2",
"@feathersjs/feathers": "^3.1.5",
"apollo-server": "^0.3.3",
"apollo-server-express": "^1.3.6",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"feathers-authentication-hooks": "^0.2.0",
"feathers-batch": "^0.2.1",
"feathers-fs": "^1.1.0",
"feathers-hooks-common": "^4.11.1",
"feathers-mongodb": "^3.1.0",
"feathers-mongodb-fuzzy-search": "^1.1.1",
"graphql": "^0.11.7",
"feathers-nedb": "^3.0.0",
"graphql-tools": "^3.0.2",
"graphql-type-json": "^0.2.1",
"helmet": "^3.12.1",
"moment": "^2.22.1",
"nedb": "^1.8.0",
"nodemon": "^1.17.5",
"query-string": "^6.1.0",
"serve-favicon": "^2.5.0",
"ua-parser-js": "^0.7.18",
"validator": "^10.2.0",
"winston": "^2.4.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}