-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"name": "voice-assistant",
"version": "1.0.0",
"description": "bla bla bla",
"main": "index.js",
"author": "Vardan Bakhshyan",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack",
"start:dev": "webpack-cli serve --port 3000 --mode development"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-external-helpers": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.2.1",
"copy-webpack-plugin": "^6.3.0",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-alpha.14",
"style-loader": "^2.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@foobar404/wave": "^1.2.7",
"@tensorflow-models/speech-commands": "^0.4.2",
"@tensorflow/tfjs": "^2.7.0",
"core-js": "^2.5.7",
"wave-visualizer": "^1.0.5",
"wavesurfer.js": "^4.2.0"
}
}