forked from joelshepherd/tabliss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2 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
{
"name": "tabliss",
"version": "2.6.1",
"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": {
"@mtps/pdengine": "^0.1.10",
"@sentry/browser": "^6.18.1",
"core-js": "^3.21.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.0",
"feather-icons": "^4.28.0",
"github-calendar": "^2.3.1",
"in-browser-language": "^1.0.3",
"nanoid": "^3.2.0",
"normalize.css": "^8.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-error-boundary": "^3.1.4",
"react-intl": "^5.25.0",
"tlds": "^1.228.0",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@types/webextension-polyfill": "^0.8.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"dotenv": "^16.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"mini-css-extract-plugin": "^2.4.6",
"node-sass": "^7.0.1",
"prettier": "2.5.1",
"raw-loader": "^4.0.2",
"react-intl-translations-manager": "^5.0.3",
"sass-loader": "^12.4.0",
"ts-loader": "^9.2.6",
"typescript": "^4.6.2",
"typescript-react-intl": "^0.4.1",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.4",
"webpack-ext-reloader": "^1.1.9",
"workbox-webpack-plugin": "^6.4.2"
}
}