-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.68 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": "root",
"private": true,
"license": "AGPL-3.0",
"author": "Kaltura",
"repository": {
"type": "git",
"url": "https://github.com/kaltura/playkit-js-contrib"
},
"scripts": {
"postinstall": "patch-package",
"clean": "lerna run clean",
"build": "lerna run build",
"reset": "lerna run reset && rm -rf node_modules",
"setup": "npm i && lerna exec npm link",
"lerna": "lerna",
"deploy:prepare": "npm run clean && npm ci && npm run build && npm run lerna:lint && node scripts/bump-version.js",
"deploy:publish-to-npm": "npm run clean && npm ci && npm run build && lerna publish from-package",
"deploy:production-player": "node ./scripts/prepare-production-player.js",
"lerna:lint:fix": "lerna run lint:js:fix",
"lerna:lint": "lerna run lint:js",
"lint:fix": "eslint --fix",
"husky:pre-commit": "lint-staged",
"husky:commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^9.1.2",
"@types/linkify-it": "^2.1.0",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^4.2.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"fs-extra": "^8.1.0",
"husky": "^4.2.1",
"inquirer": "^7.0.0",
"lerna": "^3.13.4",
"lint-staged": "^10.0.2",
"node-sass": "^4.12.0",
"patch-package": "^6.2.0",
"preact": "^10.4.1",
"prettier": "^2.0.5",
"sass-loader": "^9.0.3",
"semver": "^7.3.2",
"style-loader": "^1.2.1",
"svg-url-loader": "^6.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.2.2",
"uuid": "^8.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"npm run --silent lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run husky:pre-commit",
"commit-msg": "npm run husky:commit-msg"
}
},
"dependencies": {
"@playkit-js-contrib/common": "file:packages/common",
"@playkit-js-contrib/linkify": "file:packages/linkify",
"@playkit-js-contrib/plugin": "file:packages/plugin",
"@playkit-js-contrib/push-notifications": "file:packages/push-notifications",
"@playkit-js-contrib/ui": "file:packages/ui"
}
}