-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.19 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
{
"name": "azuracast-player",
"version": "1.0.0",
"description": "SPA audio player for the streaming stations provided by AzuraCast.",
"scripts": {
"dev": "webpack --mode=development --progress",
"build": "webpack --mode=production --progress",
"sass-min": "sass ./src/scss:./public/css --style compressed",
"init": "live-server --open=.",
"format": "prettier --write './**/**/*.{js,vue}' '!./public/**/*'"
},
"repository": {
"type": "git",
"url": "[email protected]:PeWe79/AzuraCast-Player-Main.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PeWe79/AzuraCast-Player-Main/issues"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"clean-css": "^5.3.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}