-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 KB
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
{
"name": "react-audio-waveform",
"author": "Jan Hartmann <kontakt@janhartmann.dk>",
"license": "MIT",
"version": "1.0.0",
"description": "Streaming of audio files with oscilloscope rendering and playback with generated waveform ",
"keywords": [
"react",
"react-component",
"waveform",
"oscilloscope",
"audio",
"streaming"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/janhartmann/react-audio-waveform.git"
},
"bugs": {
"url": "https://github.com/janhartmann/react-audio-waveform/issues"
},
"scripts": {
"start": "webpack-dev-server --mode development --watch",
"build": "babel src/ --out-dir lib/"
},
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.0.0-beta",
"eslint": "^5.0.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}