-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.5 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
{
"name": "@openequella/react-kaltura-simpleuploader",
"version": "1.1.1",
"description": "A simple React upload component for Kaltura.",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"config": {
"lintglobs": "src/**/*.{ts,tsx} test/**/*.{ts,tsx} stories/**/*.{ts,tsx}"
},
"scripts": {
"build": "rollup --config --bundleConfigAsCjs",
"clean": "rm -rf node_modules dist",
"lint": "eslint ${npm_package_config_lintglobs}",
"format": "eslint --fix ${npm_package_config_lintglobs}",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@storybook/addon-essentials": "6.5.16",
"@storybook/react": "6.5.16",
"@testing-library/react": "12.1.5",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"babel-loader": "9.2.1",
"babel-plugin-import": "1.13.8",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.11",
"prettier": "2.8.8",
"rollup": "4.28.1",
"rollup-plugin-css-only": "4.5.2",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.2.5",
"typescript": "4.9.5"
},
"dependencies": {
"kaltura-typescript-client": "https://github.com/openequella/kaltura-typescript-client/releases/download/v17.18.0/kaltura-typescript-client-7.0.2-v20220321-004546.tgz",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
},
"babel": {
"plugins": [
[
"import",
{
"libraryName": "kaltura-typescript-client/api/types",
"libraryDirectory": "",
"camel2DashComponentName": false,
"transformToDefaultImport": false
}
]
]
}
}