-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "whatsaid",
"version": "1.0.0",
"description": "What is Said? transcript any audio to text",
"keywords": [
"Browser",
"Chrome",
"Extension"
],
"author": "AguzzTN54 <[email protected]>",
"cacheDirectories": [
"node_modules"
],
"scripts": {
"start": "node server.js",
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js --open"
},
"dependencies": {
"@babel/core": "^7.12.10",
"defaults": "^1.0.3",
"ibm-watson": "^5.6.0",
"object.assign": "^4.0.4",
"regenerator-runtime": "^0.13.7",
"vcap_services": "^0.7.1",
"watson-speech": "^0.38.1",
"whatwg-fetch": "^3.0.0"
},
"engines": {
"node": ">=12"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/preset-env": "^7.12.10",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "6.0.3",
"html-webpack-plugin": "^4.5.0",
"webpack": "^4.43.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "5.0.9"
}
}