forked from openequella/react-kaltura-simpleuploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "@openequella/react-kaltura-simpleuploader",
"version": "1.0.0",
"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",
"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.14.5",
"@rollup/plugin-typescript": "8.2.1",
"@storybook/addon-actions": "6.2.9",
"@storybook/addon-essentials": "6.2.9",
"@storybook/addon-links": "6.2.9",
"@storybook/react": "6.2.9",
"@testing-library/react": "11.2.7",
"@types/jest": "26.0.23",
"@types/react": "17.0.11",
"@types/react-dom": "17.0.7",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"babel-loader": "8.2.2",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"husky": "6.0.0",
"jest": "27.0.4",
"lint-staged": "11.0.0",
"prettier": "2.3.1",
"rollup": "2.51.1",
"ts-jest": "27.0.3",
"typescript": "4.3.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}