-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.9 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.9 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
{
"author": "Internxt <hello@internxt.com>",
"name": "send-web",
"version": "1.0.0",
"description": "Secure, end-to-end encrypted file sharing by Internxt",
"private": true,
"scripts": {
"dev": "vite",
"start": "yarn build && vite preview",
"build": "yarn clean && tsc --noEmit && vite build",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"clean": "rimraf dist coverage .wrangler tsconfig.tsbuildinfo",
"lint": "eslint .",
"format": "prettier --write **/*.{js,jsx,tsx,ts}",
"prepare": "husky",
"cloudflare:dev": "yarn build && wrangler dev"
},
"dependencies": {
"@headlessui/react": "2.2.9",
"@internxt/lib": "1.4.1",
"@internxt/sdk": "1.15.1",
"async": "3.2.6",
"axios": "1.13.6",
"bip39": "3.1.0",
"browserify-zlib": "0.2.0",
"buffer": "6.0.3",
"bytes": "3.1.2",
"copy-to-clipboard": "3.3.3",
"crypto-browserify": "3.12.1",
"hamburger-react": "2.5.2",
"hash-wasm": "4.12.0",
"https-browserify": "1.0.0",
"js-file-download": "0.4.12",
"lodash.throttle": "4.1.1",
"moment": "2.30.1",
"os-browserify": "0.3.0",
"path-browserify": "1.0.1",
"phosphor-react": "1.4.1",
"process": "0.11.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-dropzone": "15.0.0",
"react-hot-toast": "2.6.0",
"react-markdown": "10.1.0",
"react-router-dom": "7.13.1",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"streamsaver": "2.0.6",
"typescript": "5.9.3",
"url": "0.11.4",
"util": "0.12.5",
"uuid": "13.0.0",
"web-vitals": "5.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.25.6",
"@internxt/eslint-config-internxt": "2.0.1",
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
"@rollup/plugin-replace": "6.0.3",
"@tailwindcss/vite": "4.2.1",
"@testing-library/jest-dom": "6.9.1",
"@types/async": "3.2.25",
"@types/lodash.throttle": "4.1.9",
"@types/node": "25.3.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/streamsaver": "2.0.5",
"@vitejs/plugin-react": "5.1.4",
"@vitest/coverage-istanbul": "4.0.18",
"autoprefixer": "10.4.27",
"dotenv": "17.3.1",
"eslint": "9.39.2",
"husky": "9.1.7",
"jsdom": "28.1.0",
"lint-staged": "16.3.2",
"postcss": "8.5.6",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"tailwindcss": "4.2.1",
"vite": "7.3.1",
"vite-plugin-bundle-obfuscator": "1.10.0",
"vite-plugin-node-polyfills": "0.25.0",
"vite-plugin-svgr": "4.5.0",
"vitest": "4.0.18",
"wrangler": "4.71.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}