-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.67 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
{
"name": "yandex-dialogs-whatis",
"version": "3.7.0",
"description": "Позволяет добавлять свои вопросы и потом получать на них ответы",
"main": "src/lambda.js",
"scripts": {
"start": "node src/server.js",
"start-prod": "cross-env NODE_ENV=production node src/server.js",
"test-true": "true",
"test": "node tests/index.js",
"dev-serverless": "serverless offline start",
"create": "serverless create",
"deploy": "serverless deploy",
"invoke-app": "serverless invoke local -f app -p tests/fixtures/event/default.json",
"version": "bash scripts/docker-version.sh && npm run changelog && git add CHANGELOG.md docker-compose.yml",
"postversion": "git push && npm run release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "conventional-github-releaser -p angular"
},
"repository": {
"type": "git",
"url": "git+https://github.com/popstas/yandex-dialogs-whatis.git"
},
"author": "Stanislav Popov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/popstas/yandex-dialogs-whatis/issues"
},
"homepage": "https://github.com/popstas/yandex-dialogs-whatis#readme",
"dependencies": {
"axios": "^0.18.0",
"az": "^0.2.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"fuse.js": "^3.3.0",
"js-yaml": "^3.12.1",
"lokijs": "^1.5.6",
"mongodb": "^3.1.10",
"yametrika": "^2.0.0",
"yandex-dialogs-sdk": "^2.1.1",
"yandex-dialogs-sdk-chatbase": "^1.2.2"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.11",
"conventional-github-releaser": "^3.1.0"
}
}