-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.1 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.1 KB
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
104
105
106
107
108
109
110
111
{
"name": "react-embed",
"version": "3.7.0",
"description": "",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"license": "Apache-2.0",
"homepage": "https://github.com/streamich/react-embed",
"repository": "streamich/react-embed",
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"lib/",
"esm/"
],
"scripts": {
"start": "yarn storybook",
"prettier": "prettier --ignore-path .gitignore --write 'src/**/*.{ts,tsx,js,jsx}'",
"prettier:diff": "prettier -l 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "yarn tslint",
"tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose",
"test": "echo 'Testing is not configured...'",
"release": "semantic-release",
"clean": "rimraf lib esm storybook-static",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:es",
"storybook": "storybook dev -p 6010",
"storybook:build": "storybook build",
"storybook:clean": "rimraf storybook-static",
"storybook:deploy": "gh-pages -d storybook-static"
},
"keywords": [],
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "7.27.7",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.2",
"@types/react": "18.3.23",
"@types/react-dom": "18.3.7",
"babel-loader": "9.2.1",
"gh-pages": "6.2.0",
"git-cz": "4.9.0",
"husky": "8.0.3",
"prettier": "3.6.2",
"pretty-quick": "4.2.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "5.0.10",
"semantic-release": "19.0.5",
"storybook-readme": "5.0.9",
"ts-loader": "9.5.2",
"tslint": "6.1.3",
"tslint-config-common": "1.6.2",
"typescript": "5.8.3",
"url-loader": "4.1.1",
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@storybook/addon-essentials": "7.6.20",
"@storybook/addon-interactions": "7.6.20",
"@storybook/addon-links": "7.6.20",
"@storybook/blocks": "7.6.20",
"@storybook/react": "7.6.20",
"@storybook/react-webpack5": "7.6.20",
"@storybook/testing-library": "0.2.2",
"prop-types": "15.8.1",
"storybook": "7.6.20",
"tslib": "2.8.1"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"dependencies": {
"p4-css": "^1.5.1",
"react-instagram-embed": "^1.5.0",
"react-player": "^1.15.3",
"react-simple-player": "^1.1.0",
"react-youtube": "^7.13.1",
"scriptjs": "^2.5.9"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && yarn tslint",
"pre-push": "yarn prettier:diff"
}
}
}