-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.67 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
{
"name": "holoranking",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"server": "ts-node-dev src/server/server.ts --exec babel-node --extensions \".ts,.tsx\"",
"client": "webpack-dev-server --config ./config/webpack.dev.js",
"build": "webpack --config ./config/webpack.common.js --mode production",
"dev": "SET NODE_ENV=development & concurrently -n client,server,lint \"yarn client\" \"yarn server\" \"yarn lint\"",
"start": "SET NODE_ENV=production & yarn build && yarn server && yarn lint",
"precommit": "lint-staged",
"lint": "eslint src --fix -c .eslintrc.json --ext js,jsx,ts,tsx"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/express": "^4.17.13",
"@types/log4js": "^2.3.5",
"@types/node": "^17.0.21",
"@types/node-cron": "^3.0.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"css-loader": "^6.7.0",
"eslint": "^8.10.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.29.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"node-sass": "^7.0.1",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"redux-devtools": "^3.7.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-node": "^10.6.0",
"ts-node-dev": "^1.1.8",
"typescript": "4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.2",
"@mui/x-data-grid": "^5.6.0",
"@reduxjs/toolkit": "^1.8.0",
"@types/fluent-ffmpeg": "^2.1.20",
"axios": "^0.26.0",
"csv-parse": "^5.0.4",
"dayjs": "^1.10.8",
"eslint-plugin-unused-imports": "^2.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"fluent-ffmpeg": "^2.1.2",
"googleapis": "^95.0.0",
"holodex.js": "^1.1.0",
"log4js": "^6.4.2",
"node-cron": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"ytdl-core": "^4.11.0"
}
}