-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "feathers-authen-demo-1",
"description": "demo of feathers local authentication",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Faizan Saiyed",
"email": "fsaiyed@officebrain.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"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.11",
"@feathersjs/authentication-jwt": "^2.0.5",
"@feathersjs/authentication-local": "^1.2.5",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.4",
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"@feathersjs/socketio": "^3.2.2",
"compression": "^1.7.3",
"cors": "^2.8.4",
"feathers-rethinkdb": "^0.5.2",
"helmet": "^3.13.0",
"rethinkdbdash": "^2.3.31",
"serve-favicon": "^2.5.0",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.7.0",
"mocha": "^5.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.2"
}
}