-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.81 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
{
"name": "youtube-viewer",
"version": "1.4.5",
"private": true,
"dependencies": {
"@craco/craco": "^7.0.0-alpha.7",
"@dnd-kit/core": "^5.0.1",
"@dnd-kit/modifiers": "^5.0.0",
"@dnd-kit/sortable": "^6.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/roboto": "^4.5.1",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.6",
"@reduxjs/toolkit": "^1.9.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"copy-to-clipboard": "^3.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"react-router-dom": "^5.3.4",
"react-scripts": "5.0.0",
"react-youtube": "^7.14.0",
"typescript": "^4.5.4",
"web-vitals": "^2.1.3",
"webextension-polyfill": "^0.10.0"
},
"scripts": {
"start": "craco start",
"start:dev": "REACT_APP_DEBUG=true craco start",
"build": "INLINE_RUNTIME_CHUNK=false craco build",
"build:firefox": "BUILD_PATH='./dist/web-ext' npm run build && cd dist/web-ext && mv -f manifest.firefox.json manifest.json",
"build:chrome": "BUILD_PATH='./dist/web-ext' npm run build && cd dist/web-ext && rm -f manifest.firefox.json",
"build:dev": "REACT_APP_DEBUG=true npm run build:chrome",
"build:dev:firefox": "REACT_APP_DEBUG=true npm run build:firefox",
"package": "web-ext build --source-dir=dist/web-ext --artifacts-dir=. --overwrite-dest",
"package:dev": "cd dist/web-ext && zip -r -FS ../../youtube_viewer-dev.zip *",
"package:source": "zip -r -FS youtube_viewer-source.zip * .env -x .env.* dist\\* node_modules\\* v6.x\\* old\\* screenshots\\* web-ext-artifacts\\* *.zip *.xpi",
"build:github": "BUILD_PATH='./dist/github' PUBLIC_URL=/youtube-viewer/ craco build && cp dist/github/index.html dist/github/404.html",
"deploy:github": "gh-pages -d dist/github",
"sign": "node ./scripts/sign-addon.js",
"test": "craco test",
"eject": "craco eject",
"release:major": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch"
},
"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": {
"@types/react-router-dom": "^5.3.2",
"copy-webpack-plugin": "^11.0.0",
"gh-pages": "^3.2.3",
"release-it": "^15.5.0",
"release-it-update-manifest-plugin": "^1.0.0",
"sign-addon": "^3.11.0",
"web-ext": "^7.2.0"
}
}