This repository was archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 1.77 KB
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
{
"name": "cli-gen-example-js",
"description": "Test Feathers GraphQL adapter.",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "John Szwaronek",
"email": "johnsz9999@gmail.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^8.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.8.0",
"@feathersjs/authentication": "2.1.2",
"@feathersjs/authentication-jwt": "2.0.0",
"@feathersjs/authentication-local": "1.1.0",
"@feathersjs/configuration": "1.0.2",
"@feathersjs/errors": "3.3.0",
"@feathersjs/express": "1.2.0",
"@feathersjs/feathers": "3.1.3",
"@feathersjs/socketio": "3.2.0",
"ajv": "6.3.0",
"compression": "1.7.2",
"cors": "2.8.4",
"deep-equal": "1.0.1",
"feathers-hooks-common": "4.10.0",
"feathers-sequelize": "3.0.1",
"graphql-resolvers-ast": "1.4.0",
"helmet": "3.12.0",
"lodash.merge": "4.6.1",
"merge-graphql-schemas": "1.5.0",
"sequelize": "4.37.1",
"serve-favicon": "2.4.5",
"sqlite": "2.9.0",
"sqlite3": "4.0.0",
"winston": "2.4.1"
},
"devDependencies": {
"@types/feathersjs__authentication": "2.1.0",
"@types/feathersjs__authentication-jwt": "1.0.1",
"@types/feathersjs__authentication-local": "1.0.1",
"@types/graphql": "0.12.5",
"@types/sequelize": "4.27.10",
"eslint": "4.18.2",
"mocha": "5.0.4",
"request": "2.85.0",
"request-promise": "4.2.2"
}
}