-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.47 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "assistente",
"description": "assistente-backend",
"version": "0.1.12",
"homepage": "https://assistente.dev.org.br",
"main": "src",
"keywords": [
"feathers"
],
"author": "Guilherme Lunhani <[email protected]>",
"contributors": [],
"directories": {
"test": "test",
"lib": "src"
},
"engines": {
"node": ">= 8.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run mocha",
"eslint": "./node_modules/eslint/bin/eslint.js src/. test/. --config .eslintrc.json",
"docs": "./node_modules/docco/bin/docco --output docs/ src/*.js src/**/*.js",
"dev": "nodemon node src/",
"start": "node src/",
"mocha": "./node_modules/mocha/bin/_mocha test/ --timeout 10000 --recursive --exit",
"clean": "rm -rf test/data/ && rm -rf node_modules/",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- test/ --report lcovonly -R spec --recursive --exit",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.7",
"@feathersjs/authentication-client": "^1.0.2",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "*",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"axios": "^0.18.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"docco": "^0.8.0",
"dotenv": "^6.0.0",
"feathers-mongodb-fuzzy-search": "^1.1.1",
"feathers-mongoose": "^6.1.2",
"feathers-swagger": "^0.7.1",
"helmet": "^3.12.1",
"js-yaml": "^3.12.0",
"jsonwebtoken": "^8.3.0",
"jwt-then": "^1.0.1",
"mongoose": "^5.2.1",
"mongoose-to-swagger": "^0.0.4",
"node-telegram-bot-api": "git+https://github.com/lunhg/node-telegram-bot-api.git",
"nodemon": "remy/nodemon",
"openid-client": "^2.2.0",
"qrcode": "^1.2.2",
"querystring": "^0.2.0",
"serve-favicon": "^2.5.0",
"telegraf": "^3.24.0",
"winston": "^3.0.0"
},
"devDependencies": {
"assert": "*",
"coveralls": "^3.0.2",
"eslint": "^5.3.0",
"istanbul": "^0.4.5",
"localtunnel": "^1.9.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.2.1",
"uuid": "^3.3.2"
},
"repository": {
"type": "git",
"url": "https://www.github.com/lunhg/Assistente"
},
"license": "SEE LICENSE IN LICENSE"
}