-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.21 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "youtube-dmt-2",
"description": "YouTube music visualizer in React.",
"version": "2.0.0",
"main": "server.ts",
"author": "Fun Maker",
"repository": "https://github.com/funmaker/YouTubeDMTv2",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"start": "rm -rf build && webpack --config webpack/server.dev.babel.js",
"start:prod": "cd dist && npm start",
"build:prod": "mkdir -p dist && npm-run-all build:prod-*",
"build:prod-server": "webpack --config webpack/server.babel.js",
"build:prod-client": "webpack --config webpack/client.babel.js",
"build:prod-static": "cp -rL static dist/",
"build:prod-package": "babel-node webpack/package.babel.js",
"lint": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx --max-warnings 0 --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx --ignore-path .gitignore . --fix"
},
"dependencies": {
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"core-js": "^3.29.0",
"detect-node": "^2.1.0",
"express": "^4.18.2",
"express-handlebars": "^7.0.1",
"express-promise-router": "^4.1.1",
"fluent-ffmpeg": "^2.1.2",
"morgan": "^1.10.0",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.8.2",
"react-router-dom": "^6.8.2",
"react-toastify": "^9.1.1",
"source-map-support": "^0.5.21",
"yt-dlp-wrap": "^2.3.12"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.21.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/detect-node": "^2.0.0",
"@types/express": "^4.17.17",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/webpack-env": "^1.18.0",
"@types/webpack-hot-middleware": "^2.25.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-indent-empty-lines": "^1.0.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.3",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"react-refresh": "^0.14.0",
"sass": "^1.83.4",
"sass-loader": "^13.2.0",
"start-server-nestjs-webpack-plugin": "^2.2.5",
"start-server-webpack-plugin": "^2.2.5",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-hot-middleware": "^2.25.3",
"webpack-node-externals": "^3.0.0"
}
}