-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.49 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.49 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
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
{
"name": "movieserver",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon --ignore 'plugins/*/*.json' --exec babel-node --trace-warnings server.js",
"build": "next build",
"linuxStart": "NODE_ENV=production node server.js",
"windowsStart": "node server.js",
"cypress": "cypress open",
"cypress:run": "cypress run",
"build:run": "npm run build && TEST=TRUE npm run linuxStart",
"ci": "start-server-and-test build:run http://localhost:3001 cypress:run",
"lint": "next lint"
},
"dependencies": {
"@babel/preset-react": "^7.23.3",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.60",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@types/express": "^4.17.21",
"async-lock": "^1.4.0",
"babel-loader": "^9.1.3",
"babel-preset-react": "^6.24.1",
"bootstrap": "^5.3.2",
"chokidar": "^3.5.3",
"cookies": "^0.8.0",
"dotenv": "^16.3.1",
"eol": "^0.9.1",
"esm": "^3.2.25",
"express": "^4.18.2",
"fast-deep-equal": "^3.1.3",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"libpq": "^1.8.12",
"mime": "^3.0.0",
"next": "^12.1.0",
"next-useragent": "^2.8.0",
"node-async-locks": "^2.1.2",
"node-fetch": "^2.7.0",
"opensubtitles-api": "^5.1.2",
"path-exists": "^3.0.0",
"pg-native": "^3.0.1",
"pg-promise": "^11.5.4",
"pgtools": "^1.0.1",
"process": "^0.11.10",
"react": "^17.0.2",
"react-bootstrap": "^2.9.1",
"react-dom": "^17.0.2",
"resolve": "^1.22.8",
"sanitize-filename": "^1.6.3",
"socket.io": "^4.7.2",
"srt-to-vtt": "^1.1.3",
"youtube-dl-exec": "2.4.17",
"ytdl-core": "github:fent/node-ytdl-core#pull/1203/head"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/preset-env": "^7.23.3",
"@cypress/webpack-preprocessor": "^6.0.0",
"cypress": "^13.6.0",
"eslint": "8.54.0",
"eslint-config-next": "14.0.3",
"msw": "^2.0.9",
"nodemon": "^3.0.1",
"start-server-and-test": "^2.0.3"
},
"msw": {
"workerDirectory": "public"
},
"overrides": {
"yargs@5.0.0": {
"yargs-parser": "^5.0.0"
}
}
}