-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·106 lines (106 loc) · 3.5 KB
/
package.json
File metadata and controls
executable file
·106 lines (106 loc) · 3.5 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
{
"name": "tabox",
"version": "3.5.1",
"description": "Tabox - Save and share your tabs!",
"main": "index.js",
"scripts": {
"test": "jest --transformIgnorePatterns \"node_modules/(?!@toolz/allow-react)/\" --env=jsdom --coverage",
"dev": "INLINE_RUNTIME_CHUNK=false NODE_ENV=development webpack --mode development --config webpack.js --watch",
"build": "INLINE_RUNTIME_CHUNK=false NODE_ENV=production webpack --mode production --config webpack.js",
"build:debug": "INLINE_RUNTIME_CHUNK=false NODE_ENV=production webpack --mode production --config webpack.js --env sourcemap=true",
"build:release": "INLINE_RUNTIME_CHUNK=false NODE_ENV=production webpack --mode production --config webpack.js --env sourcemap=false --env drop_console=true",
"build:analyze": "INLINE_RUNTIME_CHUNK=false NODE_ENV=production webpack --mode production --config webpack.js --profile --json > stats.json",
"prod": "INLINE_RUNTIME_CHUNK=false NODE_ENV=production webpack --mode production --config webpack.js",
"lint": "eslint './**/*.js'",
"clean": "rm -rf build .cache"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gilgold/tabox.git"
},
"keywords": [
"tabox",
"tab",
"groups"
],
"author": "Gil Goldstein",
"license": "ISC",
"bugs": {
"url": "https://github.com/gilgold/tabox/issues"
},
"homepage": "https://tabox.co",
"jest": {
"transform": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.js$": "babel-jest"
},
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-results/jest",
"outputName": "report.xml"
}
]
],
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node"
],
"setupFiles": [
"jest-webextension-mock",
"<rootDir>/jest.setup.js"
]
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"javascript-time-ago": "^2.5.11",
"jotai": "^2.15.1",
"react": "^19.0.0",
"react-countdown-circle-timer": "^3.2.1",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-modal": "^3.16.3",
"react-select": "^5.10.2",
"react-time-ago": "^7.3.3",
"react-tiny-popover": "^8.1.6",
"react-tooltip": "^5.29.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.18.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-react": "^7.37.5",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-transform-stub": "^2.0.0",
"jest-webextension-mock": "^3.9.0",
"style-loader": "^4.0.0",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-extension-manifest-plugin": "^0.8.0"
},
"packageManager": "yarn@3.6.4+sha512.e70835d4d6d62c07be76b3c1529cb640c7443f0fe434ef4b6478a5a399218cbaf1511b396b3c56eb03bc86424cff2320f6167ad2fde273aa0df6e60b7754029f"
}