forked from Mattchewone/feathers-graphql-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "feathers-graphql-demo",
"description": "Demo app",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Matt",
"email": "matt@ideajunction.uk"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^9.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit --timeout 10000"
},
"dependencies": {
"@feathers-plus/graphql": "^1.9.0",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.6",
"@feathersjs/socketio": "^3.2.2",
"ajv": "^6.5.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"feathers-hooks-common": "^4.12.0",
"feathers-mongoose": "^6.1.2",
"graphql-resolvers-ast": "^1.4.0",
"helmet": "^3.12.1",
"lodash.merge": "^4.6.1",
"merge-graphql-schemas": "^1.5.1",
"mongoose": "^5.1.4",
"serve-favicon": "^2.5.0",
"winston": "^2.4.2"
},
"devDependencies": {
"@types/graphql": "^0.13.1",
"@types/mongoose": "^5.0.15",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}