-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
115 lines (115 loc) · 4.24 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
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "twitter-media-harvest",
"version": "4.2.9",
"description": "The easiest way to get media from twitter-timeline.",
"dependencies": {
"@aws-crypto/sha256-browser": "^4.0.0",
"@aws-sdk/credential-providers": "^3.332.0",
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.3",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@sentry/browser": "^7.1.1",
"@smithy/fetch-http-handler": "^2.2.4",
"@smithy/protocol-http": "^3.0.8",
"@smithy/signature-v4": "^2.0.12",
"@types/chrome": "^0.0.241",
"crypto-browserify": "^3.12.0",
"fp-ts": "^2.16.1",
"framer-motion": "^10.9.1",
"idb": "^7.1.1",
"joi": "^17.10.2",
"jws": "^4.0.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.10.0",
"sanitize-filename": "^1.6.3",
"select-dom": "^7.1.1",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"vm-browserify": "^1.1.2",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.21.0",
"@faker-js/faker": "^8.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/jest": "^29.5.2",
"@types/jws": "^3.2.5",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-jest": "29.5.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-indexeddb": "^4.0.2",
"file-loader": "^6.1.1",
"filemanager-webpack-plugin": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.4.1",
"prettier-eslint": "^15.0.1",
"sass": "^1.45.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.2.6",
"typescript": "5.0.4",
"url-loader": "^4.1.1",
"web-ext": "^7.8.0",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1"
},
"resolutions": {
"**/typescript": "^4.1.5",
"**/@typescript-eslint/eslint-plugin": "^4.15.1",
"**/@typescript-eslint/parser": "^4.15.1"
},
"scripts": {
"test": "jest --env=node --coverage",
"start": "webpack-dev-server --env target=chrome .",
"build": "yarn build:chrome && yarn build:edge && yarn build:firefox && yarn build:firefox:signed",
"build:all:dev": "yarn build:chrome:dev && yarn build:edge:dev && yarn build:firefox:dev",
"build:dev": "webpack --mode=development --progress --color --env target=chrome",
"build:chrome": "webpack --mode=production --progress --color --env target=chrome",
"build:edge": "webpack --mode=production --progress --color --env target=edge",
"build:chrome:dev": "webpack --mode=development --progress --color --env target=chrome",
"build:edge:dev": "webpack --mode=development --progress --color --env target=edge",
"build:firefox": "webpack --mode=production --progress --color --env target=firefox",
"build:firefox:dev": "webpack --mode=development --progress --color --env target=firefox",
"build:firefox:signed": "webpack --mode=production --progress --color --env target=firefox-signed",
"watch": "yarn build:dev --watch",
"lint": "eslint --color --quiet --ext .js --ext .ts --ext .tsx src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EltonChou/TwitterMediaHarvest.git"
},
"author": "Elton H.Y. Chou",
"license": "MIT",
"bugs": {
"url": "https://github.com/EltonChou/TwitterMediaHarvest/issues"
},
"homepage": "https://github.com/EltonChou/TwitterMediaHarvest#readme"
}