-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "audiovisual",
"version": "4.2.0",
"description": "An audio visualizer web app",
"main": "lib",
"scripts": {
"doc": "jsdoc -c .jsdoc.json README.md bin lib src",
"doc-watch": "nodemon --config .nodemon.doc.json",
"lint": "eslint *.js bin lib src",
"live": "node build.js live",
"dist": "node build.js production",
"prepare": "node build.js production"
},
"files": [
"dist",
"bin",
"lib"
],
"bin": {
"audiovisual": "bin/audiovisual.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspyrx/audiovisual.git"
},
"author": "Stan Zhang <stan.zhang2@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aspyrx/audiovisual/issues"
},
"homepage": "https://github.com/aspyrx/audiovisual#readme",
"engines": {
"node": ">=14.5.0"
},
"dependencies": {
"express": "^4.15.0",
"jsmediatags": "^3.9.0",
"minimist": "^1.2.0",
"progress": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/runtime": "^7.24.1",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"bundle-loader": "^0.5.6",
"classnames": "^2.5.1",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-webpack-plugin": "^4.1.0",
"html-webpack-plugin": "^5.6.0",
"jsdoc": "^4.0.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.8.1",
"nodemon": "^3.1.0",
"normalize.css": "^8.0.1",
"postcss-loader": "^8.1.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.5",
"style-loader": "^3.3.4",
"webpack": "^5.91.0",
"webpack-dev-server": "^5.0.4"
}
}