-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
105 lines (105 loc) · 2.93 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
{
"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",
"prod": "INLINE_RUNTIME_CHUNK=false NODE_ENV=production webpack --mode production --config webpack.js",
"lint": "eslint './**/*.js'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/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.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@sentry/react": "^8.36.0",
"@szhsin/react-menu": "^4.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"javascript-time-ago": "2.3.13",
"react": "^17.0.2",
"react-confirm-alert": "2.8.0",
"react-countdown-circle-timer": "^3.2.1",
"react-dom": "^17.0.2",
"react-icons": "^5.3.0",
"react-select": "^5.8.2",
"react-simple-animate": "^3.5.2",
"react-simple-snackbar": "^1.1.11",
"react-time-ago": "^7.2.1",
"react-tiny-popover": "^8.1.2",
"react-tooltip": "^4.5.1",
"recoil": "^0.7.7"
},
"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",
"@sentry/webpack-plugin": "^2.22.6",
"@types/jest": "^28.1.8",
"babel-jest": "^27.5.1",
"babel-loader": "8.2.5",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.8.1",
"eslint": "^8.49.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-react": "^7.37.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-junit": "^14.0.1",
"jest-transform-stub": "^2.0.0",
"jest-webextension-mock": "^3.9.0",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.3.3",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-extension-manifest-plugin": "^0.8.0"
}
}