This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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-cognito-example",
"description": "Example how to use cognito for feathers authentication",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Florian Bischoff",
"email": "mail@florian-bischoff.de"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^11.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && NODE_ENV= npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.16",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/cli": "^3.9.0",
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio": "^3.2.9",
"cognito-express": "^2.0.14",
"compression": "^1.7.3",
"cors": "^2.8.5",
"feathers-authentication-custom": "^0.1.0",
"feathers-mongoose": "^6.3.0",
"helmet": "^3.16.0",
"mongodb-core": "^3.1.11",
"mongoose": "^5.4.19",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.15.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}