-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
{
"name": "feathers-chat",
"description": "A Feathers chat application",
"version": "0.0.0",
"homepage": "https://feathersjs.com",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "David Luecke",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run coverage",
"coverage": "npm run clean && NODE_ENV=test nyc mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json --fix",
"start": "node src/",
"clean": "shx rm -rf test/data/",
"mocha": "npm run clean && NODE_ENV=test mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.14",
"@feathersjs/authentication-jwt": "^2.0.8",
"@feathersjs/authentication-local": "^1.2.8",
"@feathersjs/configuration": "^2.0.5",
"@feathersjs/errors": "^3.3.5",
"@feathersjs/express": "^1.3.0",
"@feathersjs/feathers": "^3.3.0",
"@feathersjs/socketio": "^3.2.8",
"compression": "^1.7.3",
"cors": "^2.8.5",
"feathers-nedb": "^4.0.0",
"feathers-swagger": "^1.0.0",
"helmet": "^3.15.0",
"mongoose": "^5.5.11",
"mongoose-to-swagger": "0.0.4",
"mongoose-validators": "^0.1.0",
"multer": "^1.4.1",
"nedb": "^1.8.0",
"serve-favicon": "^2.5.0",
"server-static": "^2.0.5",
"swagger-ui": "^3.22.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"feathers-memory": "^3.0.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"shx": "^0.3.2"
}
}