-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.81 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
{
"name": "devflix",
"version": "0.0.1",
"description": "MonoRepo for DevFlix Project",
"main": "index.js",
"scripts": {
"test": "npm run build && npm run test:shared && npm run test:adapter && npm run test:catalog",
"test:catalog": "NODE_V8_COVERAGE=coverage/catalog node --experimental-specifier-resolution=node --experimental-test-coverage --test packages/video-catalog",
"test:adapter": "NODE_V8_COVERAGE=coverage/adapter node --experimental-test-coverage --test packages/video-adapter ",
"test:shared": "NODE_V8_COVERAGE=coverage/shared node --experimental-test-coverage --test packages/shared ",
"build": "tsc --build",
"start:video-adapter": "node packages/video-adapter",
"dev:adapter": "nodemon -e ts --exec \"npm run build && npm run start:video-adapter\"",
"start:video-catalog": "node packages/video-catalog",
"dev:catalog": "nodemon -e ts --exec \"npm run build && npm run start:video-catalog\"",
"lint": "eslint packages/**/src/**/** --no-error-on-unmatched-pattern"
},
"keywords": [],
"author": "lucasraziel",
"license": "GNU AGPLv3",
"workspaces": [
"packages/shared",
"packages/video-adapter",
"packages/video-catalog"
],
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.21",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"fluent-ffmpeg": "^2.1.2"
}
}