-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.38 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@castlabs/prestoplay-react-components",
"version": "0.0.0",
"description": "React components for PRESTOplay",
"homepage": "https://github.com/castlabs/prestoplay-react-components",
"repository": {
"type": "git",
"url": "git+https://github.com/castlabs/prestoplay-react-components.git"
},
"bugs": {
"url": "https://github.com/castlabs/prestoplay-react-components/issues"
},
"author": "castLabs GmbH (https://castlabs.com/)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bash ./scripts/build.sh",
"start": "bash ./scripts/start.sh",
"test": "jest",
"test:watch": "jest --watch",
"lint": "npx eslint .",
"storybook": "storybook dev --port 6006",
"build-storybook": "storybook build --output-dir ./dist/storybook",
"prepack": "npm run build"
},
"license": "Apache-2.0",
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@castlabs/prestoplay": "^6.16.1-beta.6",
"@finga/eslint-config": "^1.2.1",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^9.0.2",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/blocks": "^7.0.18",
"@storybook/manager-api": "^7.0.20",
"@storybook/react": "^7.0.18",
"@storybook/react-webpack5": "^7.0.18",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.5",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-plugin-import": "github:fingerartur/eslint-plugin-import",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-use-effect-no-deps": "^1.1.2",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"postcss": "^8.4.18",
"postcss-url": "^10.1.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-test-renderer": "^18.2.0",
"rollup": "^3.2.3",
"rollup-jest": "^3.1.0",
"rollup-merge-config": "^0.0.12",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-externals": "^5.1.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.1",
"storybook": "^7.0.18",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@castlabs/prestoplay": "^6.16.1-beta.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"keywords": [
"prestoplay",
"video",
"react"
],
"dependencies": {
"@react-hook/resize-observer": "^1.2.6"
}
}