forked from joelshepherd/tabliss
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.6 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.6 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
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
{
"name": "tablissng",
"version": "1.6.5",
"description": "A beautiful, customizable New Tab page. This is an actively maintained fork of the original Tabliss project.",
"license": "GPL-3.0",
"private": true,
"author": {
"name": "BookCatKid",
"url": "https://github.com/BookCatKid"
},
"contributors": [
{
"name": "Joel Shepherd",
"url": "https://github.com/joelshepherd"
}
],
"scripts": {
"build": "npm run build:web",
"build:chromium": "cross-env NODE_ENV=production BUILD_TARGET=chromium webpack",
"build:firefox": "cross-env NODE_ENV=production BUILD_TARGET=firefox webpack",
"build:safari": "cross-env NODE_ENV=production BUILD_TARGET=safari webpack",
"build:web": "cross-env NODE_ENV=production BUILD_TARGET=web webpack",
"dev": "npm run dev:web",
"dev:chromium": "cross-env BUILD_TARGET=chromium webpack --watch",
"dev:firefox": "cross-env BUILD_TARGET=firefox webpack --watch",
"dev:safari": "cross-env BUILD_TARGET=safari webpack --watch",
"dev:web": "cross-env BUILD_TARGET=web webpack serve",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "tsc -p tsconfig.test.json && jest",
"translations": "node ./scripts/translations.js",
"sign:firefox": "node ./scripts/firefox-sign-manual.js",
"deps:check": "npx npm-check",
"deps:update": "npx npm-check -u",
"typecheck": "tsc",
"prepare": "husky"
},
"lint-staged": {
"**/*.{ts,tsx}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@iconify/react": "^6.0.2",
"@swc/core": "^1.15.21",
"core-js": "^3.49.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"feather-icons": "^4.29.2",
"in-browser-language": "^1.0.3",
"nanoid": "^5.1.7",
"normalize.css": "^8.0.1",
"react": "^19.2.4",
"react-crossfade-simple": "^1.0.7",
"react-dom": "^19.2.4",
"react-dropdown-select": "^4.12.2",
"react-error-boundary": "^6.1.1",
"react-github-btn": "^1.4.0",
"react-github-calendar": "^5.0.5",
"react-intl": "^10.1.0",
"react-markdown": "^10.1.0",
"react-moveable": "^0.56.0",
"tlds": "^1.261.0",
"webextension-polyfill": "^0.12.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^3.0.0",
"@eslint/js": "^10.0.1",
"@swc/jest": "^0.2.39",
"@types/core-js": "~2.5.8",
"@types/feather-icons": "~4.29.4",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/webextension-polyfill": "^0.12.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"dotenv": "^17.3.1",
"eslint": "^10.1.0",
"file-loader": "^6.2.0",
"glob": "^13.0.6",
"globals": "^17.4.0",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"mini-css-extract-plugin": "^2.10.1",
"prettier": "^3.8.0",
"raw-loader": "^4.0.2",
"react-intl-translations-manager": "^5.0.3",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"typescript-react-intl": "^0.4.1",
"url-loader": "^4.1.1",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3",
"workbox-webpack-plugin": "^7.4.0"
},
"overrides": {
"serialize-javascript": "^7.0.4"
}
}