-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "feathers-chat",
"description": "A FeathersJS chat application",
"version": "4.0.0",
"homepage": "https://feathersjs.com",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "David Luecke",
"email": "daff@neyeon.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^11.0.0",
"npm": ">= 6.0.0"
},
"scripts": {
"test": "npm run eslint && npm run coverage",
"coverage": "nyc npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"dev": "nodemon src/",
"start": "node src/",
"clean": "shx rm -rf test/data/",
"update-dependencies": "ncu -u",
"mocha": "npm run clean && NODE_ENV=test mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^4.5.2",
"@feathersjs/authentication-local": "^4.5.2",
"@feathersjs/authentication-oauth": "^4.5.2",
"@feathersjs/configuration": "^4.5.2",
"@feathersjs/errors": "^4.5.2",
"@feathersjs/express": "^4.5.2",
"@feathersjs/feathers": "^4.5.2",
"@feathersjs/socketio": "^4.5.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-nedb": "^5.1.0",
"feathers-telegram-bot": "0.0.1-2",
"helmet": "^3.21.3",
"nedb": "^1.8.0",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.19.2",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"npm-check-updates": "^4.0.4",
"nyc": "^15.0.0",
"shx": "^0.3.2"
}
}