-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
{
"name": "@pbeejcom/safeyt-video-editor",
"version": "2.1.10",
"private": false,
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"dist/types"
],
"main": "dist/index.js",
"repository": {
"url": "https://github.com/PBEEJcom/safeyt-video-editor.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.0",
"@types/node": "^16.7.13",
"axios": "^1.4.0",
"react-responsive": "^9.0.2",
"rollup-plugin-dts": "^5.3.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0",
"web-vitals": "^2.1.0",
"youtube-player": "^5.6.0"
},
"resolutions": {
"@types/react": "^17"
},
"scripts": {
"start": "PORT=3030 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"rollup": "rollup -c",
"clean": "run() { cd src/$1 && rimraf build; }; run",
"version-and-publish": "run() { yarn clean $1 && yarn build $1 && (cd src/$1 && yarn publish --registry=https://npm.pkg.github.com/) }; run",
"publish:patch": "run() { yarn version-and-publish $1 patch; }; run",
"publish:minor": "run() { yarn version-and-publish $1 minor; }; run",
"publish:major": "run() { yarn version-and-publish $1 major; }; run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@rollup/plugin-url": "^8.0.1",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/youtube": "^0.0.47",
"@types/youtube-player": "^5.5.7",
"babel-loader": "^9.1.2",
"react": "^17",
"react-dom": "^17",
"react-scripts": "5.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.25.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
}
}