-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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
{
"name": "requirepodcast-studio",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "NODE_ENV=development nodemon src/index.ts & webpack --watch",
"build": "tsc && webpack"
},
"nodemonConfig": {
"ignore": [
"public/pig/*/*.json"
]
},
"dependencies": {
"@material/mwc-button": "^0.14.1",
"@material/mwc-drawer": "^0.14.1",
"@material/mwc-icon-button": "^0.14.1",
"@material/mwc-linear-progress": "^0.15.0",
"@material/mwc-list": "^0.14.1",
"@material/mwc-snackbar": "^0.19.1",
"@material/mwc-textarea": "^0.15.0",
"@material/mwc-textfield": "^0.15.0",
"@material/mwc-top-app-bar": "^0.14.1",
"@material/mwc-top-app-bar-fixed": "^0.14.1",
"@material/select": "^6.0.0",
"@types/fs-extra": "^8.1.0",
"@types/multer": "^1.4.3",
"@types/socket.io": "^2.1.4",
"@webcomponents/webcomponentsjs": "^2.4.3",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"canvas": "^2.6.1",
"cookie-parser": "^1.4.5",
"copy-text-to-clipboard": "^2.2.0",
"css-loader": "^3.5.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.4.0",
"faunadb": "^3.0.1",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^9.0.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mini-css-extract-plugin": "^0.9.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-sass": "^4.14.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"pretty-bytes": "^5.3.0",
"pug": "^3.0.1",
"sanitize-filename": "^1.6.3",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"session-file-store": "^1.4.0",
"slugify": "^1.4.5",
"socket.io": "^2.4.0",
"socket.io-client": "^2.3.0",
"style-loader": "^1.2.0",
"typescript": "^3.8.3",
"validator": "^13.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/ffmpeg-static": "^3.0.0",
"@types/fluent-ffmpeg": "^2.1.14",
"@types/jsonwebtoken": "^8.3.9",
"@types/morgan": "^1.9.0",
"@types/passport": "^1.0.3",
"@types/passport-github2": "^1.2.4",
"@types/session-file-store": "^1.2.1",
"prettier": "^2.0.5",
"ts-node": "^8.9.1",
"tslint": "^6.1.1",
"tslint-plugin-prettier": "^2.3.0"
}
}