forked from feathersjs/feathers-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
{
"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 && SET NODE_ENV=test istanbul cover node_modules/mocha/bin/_mocha -- test/ --recursive --exit",
"eslint": "eslint src/. test/. --config .eslintrc.json --fix",
"start": "node src/",
"clean": "shx rm -rf test/data/",
"mocha": "npm run clean && SET NODE_ENV=test mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^2.0.1",
"@feathersjs/authentication-jwt": "^2.0.0",
"@feathersjs/authentication-local": "^1.0.2",
"@feathersjs/configuration": "^1.0.1",
"@feathersjs/errors": "^3.2.0",
"@feathersjs/express": "^1.1.2",
"@feathersjs/feathers": "^3.0.2",
"@feathersjs/socketio": "^3.0.1",
"compression": "^1.7.1",
"cors": "^2.8.4",
"feathers-knex": "^3.3.0",
"feathers-nedb": "^3.0.0",
"helmet": "^3.9.0",
"knex": "^0.14.6",
"mssql": "^4.1.0",
"nedb": "^1.8.0",
"serve-favicon": "^2.4.5",
"winston": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.0.0",
"feathers-memory": "^2.1.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"shx": "^0.3.0"
}
}