-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "opentogethertube",
"version": "0.14.1",
"private": true,
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=18 <=20",
"yarn": "4"
},
"workspaces": [
"common",
"server",
"client",
"packages/*"
],
"type": "module",
"scripts": {
"postinstall": "patch-package",
"start": "yarn workspace ott-server start",
"serve": "yarn workspace ott-client serve",
"build": "yarn workspaces foreach --all run build",
"lint": "yarn workspaces foreach --all run lint",
"lint-ci": "yarn workspaces foreach --all run lint-ci",
"test": "yarn workspaces foreach --all run test",
"cy:run": "cypress run --headless",
"cy:run:component": "yarn workspace ott-client run cy:run",
"cy:open": "cypress open",
"cy:open:component": "yarn workspace ott-client run cy:open",
"api-server": "yarn workspace ott-server debug",
"dev": "NODE_ENV=development concurrently \"yarn run api-server\" \"PORT=8080 yarn run serve\"",
"dev-windows": "SET NODE_ENV=development&&concurrently \"npm:api-server\" \"npm:serve\"",
"db:migrate": "yarn workspace ott-server run sequelize db:migrate",
"db:migrate:undo": "yarn workspace ott-server run sequelize db:migrate:undo"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"axios": "1.6.7",
"dayjs": "^1.10.4",
"lodash": "^4.17.21",
"patch-package": "^7.0.1",
"postinstall-postinstall": "^2.1.0",
"ts-essentials": "^9.3.0",
"typescript": "5.4.5",
"validator": "^13.7.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"@types/node": "^16.11.7",
"@types/uuid": "^3.4.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"concurrently": "7.6.0",
"cypress": "13.7.1",
"cypress-iframe": "^1.0.1",
"cypress-real-events": "^1.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"faker": "^5.5.3",
"prettier": "^2.5.1",
"supertest": "6.3.3",
"ts-node": "^10.9.1"
},
"packageManager": "[email protected]"
}