-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.38 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.38 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
{
"name": "Addy",
"version": "2.0.1",
"description": "A web extension for saving content quickly",
"license": "MIT",
"test": "jest",
"repository": {
"type": "git",
"url": "https://github.com/hkben/Addy"
},
"scripts": {
"build": "node utils/build.js",
"start": "node utils/webserver.js",
"prettier": "prettier --write '**/*.{js,jsx,css,html}'",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.75.0",
"@aws-sdk/client-s3": "^3.75.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.75.0",
"@babel/runtime": "^7.15.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-table": "^8.21.3",
"@types/chrome": "0.0.132",
"@types/react": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/webextension-polyfill": "^0.8.0",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"immer": "^10.0.3",
"jszip": "^3.7.1",
"loglevel": "^1.9.1",
"lucide-react": "^0.525.0",
"react": "^19.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-router-dom": "^6.2.1",
"react-tooltip": "^5.21.7",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.5",
"webextension-polyfill": "^0.8.0",
"zustand": "^4.4.5"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@tailwindcss/postcss": "^4.1.7",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.14.175",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^8.3.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^7.0.0",
"eslint": "^7.20.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"html-loader": "^2.1.0",
"html-webpack-plugin": "^5.2.0",
"jest": "^30.1.1",
"mini-css-extract-plugin": "^2.3.0",
"postcss": "^8.4.7",
"postcss-cli": "^9.0.1",
"postcss-loader": "^6.1.1",
"prettier": "^2.2.1",
"sass": "^1.89.0",
"sass-loader": "^16.0.0",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"tailwindcss": "^4.1.7",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^29.4.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^5.2.2"
}
}