-
Notifications
You must be signed in to change notification settings - Fork 301
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "tabliss",
"version": "2.6.0",
"license": "GPL-3.0",
"private": true,
"scripts": {
"build": "npm run build:web",
"build:chromium": "NODE_ENV=production BUILD_TARGET=chromium webpack",
"build:firefox": "NODE_ENV=production BUILD_TARGET=firefox webpack",
"build:web": "NODE_ENV=production BUILD_TARGET=web webpack",
"dev": "npm run dev:web",
"dev:chromium": "BUILD_TARGET=chromium webpack --watch",
"dev:firefox": "BUILD_TARGET=firefox webpack --watch",
"dev:web": "BUILD_TARGET=web webpack serve",
"test": "tsc -p tsconfig.test.json && jest",
"translations": "node ./scripts/translations.js"
},
"dependencies": {
"@sentry/browser": "^7.93.0",
"core-js": "^3.35.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^1.3.8",
"feather-icons": "^4.29.1",
"github-calendar": "^2.3.2",
"in-browser-language": "^1.0.3",
"nanoid": "^3.3.7",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-intl": "^6.6.0",
"tlds": "^1.248.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/webextension-polyfill": "^0.10.7",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.1",
"css-loader": "^6.9.0",
"dotenv": "^16.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.7",
"node-sass": "^9.0.0",
"prettier": "3.2.2",
"raw-loader": "^4.0.2",
"react-intl-translations-manager": "^5.0.3",
"sass-loader": "^14.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"typescript-react-intl": "^0.4.1",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-ext-reloader": "^1.1.12",
"workbox-webpack-plugin": "^7.0.0"
}
}