-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.2 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
{
"name": "html5-audio-player",
"version": "1.4.0",
"description": "A custom audio player and playlist with a custom progress/seek bar using HTMl5 audio.",
"main": "src/js/index.js",
"scripts": {
"scss": "sass src/scss/styles.scss --style=compressed public/css/styles.css",
"start": "NODE_ENV=development webpack-dev-server --mode development --config webpack.config.dev.js",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js"
},
"author": "Craig Stroman",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"acorn": "^8.11.3",
"ajv": "^8.12.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.1",
"eslint": "^9.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-loader": "^4.0.2",
"html-webpack-plugin": "^5.6.0",
"imurmurhash": "^0.1.4",
"node-sass": "^9.0.0",
"prettier": "^3.2.5",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.65.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"@babel/runtime": "^7.24.4",
"core-js": "^3.37.0"
}
}