forked from SharzyL/pastebin-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.43 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.43 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
{
"private": true,
"name": "pb",
"version": "1.0.0",
"description": "Pastebin based on Cloudflare worker",
"repository": "https://github.com/SharzyL/pastebin-worker",
"type": "module",
"scripts": {
"deploy": "wrangler deploy",
"build:frontend": "vite build frontend --outDir ../dist/frontend --emptyOutDir",
"build:frontend:dev": "vite build frontend --mode development --outDir ../dist/frontend --emptyOutDir",
"dev:frontend": "vite serve frontend --mode development",
"preview:frontend": "vite preview --outDir dist/frontend",
"dev": "wrangler dev --var DEPLOY_URL:http://localhost:8787 --port 8787",
"gentypes": "wrangler types --strict-vars false",
"build": "wrangler deploy --dry-run --outdir=dist",
"delete-paste": "wrangler kv key delete --binding PB",
"test": "vitest",
"fmt": "prettier --write .",
"lint": "eslint .",
"coverage": "vitest run --coverage"
},
"author": "SharzyL <me@sharzy.in>",
"license": "MIT",
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.22",
"@craftamap/esbuild-plugin-html": "^0.9.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.14.1",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-istanbul": "3.1.1",
"eslint": "^9.25.0",
"jsdom": "^26.1.0",
"msw": "^2.7.5",
"prettier": "^3.5.3",
"toml": "^3.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.3",
"vitest": "3.1.1",
"wrangler": "^4.13.2"
},
"prettier": {
"singleQuote": false,
"semi": false,
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 120
},
"dependencies": {
"@heroui/react": "2.8.0-beta.2",
"@mjackson/multipart-parser": "^0.8.2",
"@tailwindcss/vite": "^4.1.4",
"@types/bcrypt": "^5.0.2",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"bcrypt-ts": "^7.0.0",
"chardet": "^2.1.0",
"framer-motion": "^12.7.4",
"highlight.js": "^11.11.1",
"mdast-util-to-string": "^4.0.0",
"mime": "^4.0.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"tailwindcss": "^4.1.4",
"unified": "^11.0.5"
},
"resolutions": {
"stringify-entities": "4.0.2"
}
}