-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
{
"bin": {
"yandex-dialogs-client": "bin/nuxt-start.js"
},
"files": [
"api",
"bin",
".nuxt",
"plugins",
"src",
"static",
"nuxt.config.js"
],
"scripts": {
"dev": "cross-env HOST=0.0.0.0 PORT=3003 nuxt",
"dev-proxy": "cross-env IS_PROXY=1 HOST=0.0.0.0 PORT=3003 nuxt",
"dev-yandex": "cross-env IS_PROXY=1 SPEECH_ENGINE=yandex HOST=0.0.0.0 PORT=3003 nuxt",
"dev-debug": "node --inspect node_modules/.bin/nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push && npm run release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "conventional-github-releaser -p angular && bash scripts/deploy.sh && npm run build && npm publish",
"deploy": "bash scripts/deploy.sh",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxt/cli": "^2.4.5",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^2.6.0",
"body-parser": "^1.18.3",
"element-ui": "^2.4.11",
"es6-promise": "^4.2.5",
"js-yaml": "^3.12.1",
"node-sass": "^4.11.0",
"nuxt": "^2.3.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"vue-awesome": "^3.3.1",
"vue-slideout": "^1.7.0",
"vue-style-loader": "^4.1.2",
"vuex-persistedstate": "^2.5.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"conventional-changelog-cli": "^2.0.22",
"conventional-github-releaser": "^3.1.3",
"eslint": "^5.16.0",
"eslint-config-standard": ">=12.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2"
},
"name": "yandex-dialogs-client",
"version": "1.2.0",
"description": "Клиент для работы с навыками Яндекс.Диалогов Алисы локально",
"repository": {
"type": "git",
"url": "git+https://github.com/popstas/yandex-dialogs-client.git"
},
"keywords": [
"speech",
"vue"
],
"author": "Stanislav Popov <popstas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/popstas/yandex-dialogs-client/issues"
},
"homepage": "https://github.com/popstas/yandex-dialogs-client"
}