This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.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
{
"name": "media-tools",
"description": "Tools to manage our events' media, streaming, recording and archiving ",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "NODE_PATH=./dist node ./dist/index",
"dev": "nodemon ./src/index.ts",
"test": "NODE_ENV=test jest --detectOpenHandles --watchAll --no-cache",
"test:coverage": "NODE_ENV=test jest --coverage --detectOpenHandles --no-cache",
"lint": "eslint --fix",
"prettier": "prettier './src' --write",
"run:concat": "nodemon ./src/concat.ts",
"run:download": "nodemon ./src/download.ts",
"run:mp3": "nodemon ./src/mp3.ts",
"run:mp3-opening": "nodemon ./src/mp3-opening.ts",
"run:split": "nodemon ./src/split.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src": [
"lint",
"prettier"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "./src",
"coverageDirectory": "../coverage",
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"js",
"ts"
]
},
"dependencies": {
"@ethersproject/providers": "^5.7.1",
"@types/fluent-ffmpeg": "^2.1.20",
"cross-fetch": "^3.1.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"editly": "^0.14.2",
"ethereum-blockies-base64": "^1.0.2",
"fluent-ffmpeg": "^2.1.2",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"slugify": "^1.6.5",
"ytdl-core": "^4.11.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/dotenv": "^8.2.0",
"@types/ffmpeg-concat": "^1.1.2",
"@types/jest": "^29.2.5",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "8.23.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"ffmpeg-concat": "^1.3.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
}
}