-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.47 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.47 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
87
88
{
"name": "movieserver",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon --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.13.13",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@mui/material": "^5.2.2",
"@types/express": "^4.17.13",
"async-lock": "^1.2.4",
"babel-loader": "^8.1.0",
"babel-preset-react": "^6.24.1",
"bootstrap": "^5.1.3",
"chokidar": "^3.4.0",
"cookies": "^0.8.0",
"dotenv": "^16.0.0",
"eol": "^0.9.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"fast-deep-equal": "^3.1.3",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^9.0.0",
"mime": "^2.4.5",
"next": "^12.1.0",
"next-useragent": "^2.5.1",
"node-async-locks": "^2.0.0",
"node-fetch": "^2.6.7",
"opensubtitles-api": "^5.1.2",
"path-exists": "^4.0.0",
"pg-native": "^3.0.0",
"pg-promise": "^10.5.5",
"pgtools": "^0.3.2",
"process": "^0.11.10",
"react": "^17.0.2",
"react-bootstrap": "^2.0.2",
"react-dom": "^17.0.2",
"resolve": "^1.22.0",
"sanitize-filename": "^1.6.3",
"socket-io": "^1.0.0",
"socket.io": "^4.1.3",
"srt-to-vtt": "^1.1.3",
"youtube-dl-exec": "^1.2.4",
"ytdl-core": "^4.11.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/preset-env": "^7.9.6",
"@cypress/webpack-preprocessor": "^5.11.1",
"autoprefixer": "^10.4.0",
"cypress": "^9.5.1",
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"msw": "^0.39.0",
"nodemon": "^2.0.3",
"postcss": "^8.4.4",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^2.2.19"
},
"msw": {
"workerDirectory": "public"
},
"overrides": {
"yargs@5.0.0": {
"yargs-parser": "^5.0.0"
}
}
}