-
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.94 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.94 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.10",
"@internxt/lib": "^1.4.1",
"@internxt/sdk": "^1.16.2",
"async": "^3.2.6",
"axios": "^1.16.0",
"bip39": "^3.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"bytes": "^3.1.2",
"copy-to-clipboard": "^4.0.2",
"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.6",
"react-dom": "^19.2.6",
"react-dropzone": "^15.0.0",
"react-hot-toast": "^2.6.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.15.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"streamsaver": "^2.0.6",
"typescript": "^6.0.3",
"url": "^0.11.4",
"util": "^0.12.5",
"uuid": "^14.0.0",
"web-vitals": "^5.2.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.36.0",
"@internxt/eslint-config-internxt": "^2.1.0",
"@internxt/prettier-config": "^2.0.1",
"@rollup/plugin-replace": "^6.0.3",
"@tailwindcss/vite": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@types/async": "^3.2.25",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/streamsaver": "^2.0.5",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-istanbul": "^4.1.5",
"autoprefixer": "^10.5.0",
"dotenv": "^17.4.2",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.2",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"tailwindcss": "^4.2.4",
"vite": "^8.0.11",
"vite-plugin-bundle-obfuscator": "^1.11.0",
"vite-plugin-node-polyfills": "^0.26.0",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.1.5",
"wrangler": "^4.88.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}