-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
86 lines (86 loc) · 2.53 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
{
"name": "react-twitch-embed",
"version": "3.0.2",
"description": "A collection of components to embed Twitch.",
"author": "moonstar-x",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"storybook:serve": "start-storybook -p 6006",
"storybook:build": "build-storybook -o docs-build",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "jest",
"test:watch": "jest --watch",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonstar-x/react-twitch-embed.git"
},
"bugs": {
"url": "https://github.com/moonstar-x/react-twitch-embed/issues"
},
"homepage": "https://github.com/moonstar-x/react-twitch-embed#readme",
"keywords": [
"twitch",
"twitch-embed",
"twitch-stream",
"twitch-player",
"react-twitch"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.7",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-loader": "^8.2.5",
"eslint": "^8.22.0",
"eslint-config-greencoast": "^0.0.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.78.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}