-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.26 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
{
"name": "@jwp/ott",
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"version": "6.11.0",
"private": true,
"license": "Apache-2.0",
"repository": "https://github.com/jwplayer/ott-web-app.git",
"author": "JW Player",
"main": "index.js",
"engines": {
"node": ">=18.13.0"
},
"workspaces": [
"configs/*",
"packages/*",
"platforms/*"
],
"scripts": {
"commit-msg": "commitlint --edit $1",
"depcheck": "knip --dependencies",
"format": "run-s -c format:*",
"format:eslint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\" --fix",
"format:prettier": "prettier --write \"{**/*,*}.{js,ts,jsx,tsx}\"",
"format:stylelint": "stylelint --fix '**/*.{css,scss}'",
"i18next-diff": "npx ts-node ./scripts/i18next/diff-translations",
"i18next-update": "pnpm exec ts-node ./scripts/i18next/update-translations.ts && pnpm --filter @jwp/ott-web run i18next",
"lint": "pnpm \"/^lint:.*/\"",
"lint:eslint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"lint:prettier": "prettier --check \"{**/*,*}.{js,ts,jsx,tsx}\"",
"lint:stylelint": "stylelint '**/*.{css,scss}'",
"lint:ts": "pnpm exec tsc --pretty --noEmit -p ./scripts && pnpm -r run lint:ts",
"load-content-types": "ts-node ./scripts/content-types/load-content-types",
"pre-commit": "pnpm depcheck && lint-staged",
"prepare": "husky install",
"test": "TZ=UTC LC_ALL=en_US.UTF-8 vitest run",
"test-update": "TZ=UTC LC_ALL=en_US.UTF-8 vitest run -u",
"test-watch": "TZ=UTC LC_ALL=en_US.UTF-8 vitest",
"web": "pnpm -C platforms/web"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/node": "^22.13.10",
"csv-parse": "^5.6.0",
"eslint": "^8.57.1",
"eslint-config-jwp": "workspace:*",
"husky": "^6.0.0",
"i18next-parser-workspaces": "^0.2.1",
"knip": "^5.61.2",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"read": "^2.1.0",
"stylelint": "^15.11.0",
"ts-node": "^10.9.2",
"typescript": "5.8.3",
"vitest": "^3.0.8"
}
}