-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
115 lines (115 loc) · 4.08 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@sberdevices/assistant-client",
"version": "4.20.0",
"description": "Модуль взаимодействия с виртуальным ассистентом",
"main": "dist/index.js",
"module": "esm/index.js",
"unpkgdev": "umd/assistant.development.min.js",
"unpkg": "umd/assistant.production.min.js",
"scripts": {
"prebuild": "rm -rf ./dist ./esm ./umd",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"release": "auto shipit",
"proto": "pbjs -t static-module src/proto/index.proto > src/proto/index.js && pbts src/proto/index.js -o src/proto/index.d.ts",
"asr": "pbjs -t static-module src/assistantSdk/voice/recognizers/asr/index.proto > src/assistantSdk/voice/recognizers/asr/index.js && pbts src/assistantSdk/voice/recognizers/asr/index.js -o src/assistantSdk/voice/recognizers/asr/index.d.ts",
"mtt": "pbjs -t static-module src/assistantSdk/voice/recognizers/mtt/index.proto > src/assistantSdk/voice/recognizers/mtt/index.js && pbts src/assistantSdk/voice/recognizers/mtt/index.js -o src/assistantSdk/voice/recognizers/mtt/index.d.ts",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:cy": "cypress run -b chromium --headless",
"lint": "eslint --ext .js,.ts,.tsx src/."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sberdevices/assistant-client"
},
"keywords": [
"sber",
"assistant",
"smartapp"
],
"author": "SberDevices Frontend Team <[email protected]>",
"license": "Sber Public License at-nc-sa v.2",
"dependencies": {
"@salutejs/scenario": "0.20.0",
"axios": "0.21.1",
"lodash.clonedeep": "^4.5.0",
"protobufjs": "6.10.2",
"uuid": "8.0.0"
},
"browserslist": [
"last 1 Chrome versions"
],
"devDependencies": {
"@auto-it/conventional-commits": "^10.25.0",
"@auto-it/npm": "^10.25.0",
"@auto-it/slack": "^10.25.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@cypress/webpack-preprocessor": "5.9.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "26.0.14",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mocha": "8.0.3",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/uuid": "7.0.3",
"auto": "^10.25.0",
"cypress": "7.6.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.11.3",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"eslint-plugin-testing-library": "^3.10.1",
"file-loader": "6.1.0",
"husky": "4.3.0",
"lint-staged": "^10.5.4",
"mock-socket": "9.0.3",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "3.4.3",
"rollup": "^2.33.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "8.0.4",
"tslib": "^2.0.3",
"typescript": "3.9.2",
"webpack": "4.44.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"files": [
"dist",
"esm",
"umd"
],
"sideEffects": false,
"auto": {
"baseBranch": "main",
"plugins": [
[
"npm",
{
"setRcToken": false
}
],
"conventional-commits",
"slack"
]
}
}