-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.18 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
{
"name": "music-player",
"version": "1.0.0",
"description": "Music player practice and audio waveforms visualization with pure HTML, CSS and vanilla JavaScript.<br/> Songs in this player example are royalty free.",
"main": "script.js",
"scripts": {
"build": "webpack --config config/webpack.config.prod.js",
"start": "webpack-dev-server --config config/webpack.config.dev.js --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ign0ramus/music-player.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ign0ramus/music-player/issues"
},
"homepage": "https://github.com/ign0ramus/music-player#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.1",
"error-overlay-webpack-plugin": "^0.4.1",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.10.0",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}