-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.66 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
{
"name": "branded-short-links",
"displayName": "Branded Short Links",
"version": "1.2.0",
"description": "A short link manager for branded links with Google Tag Manager support running on Cloudflare Workers",
"main": "",
"exports": "./",
"type": "module",
"private": true,
"scripts": {
"start": "npm-run-all --parallel start:*",
"start:wrangler": "wrangler dev",
"start:linkgen": "vite serve",
"build": "npm-run-all --sequential build:*",
"build:linkgen": "vite build",
"deploy": "npm-run-all --sequential deploy:*",
"deploy:lint": "npx eslint ./src",
"deploy:wrangler": "wrangler deploy"
},
"types": "",
"repository": {
"type": "git",
"url": "git://github.com/cbnventures/branded-short-links.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cbnventures"
},
{
"type": "custom",
"url": "https://www.cbnventures.io/paypal/"
}
],
"keywords": [
"url-shortener",
"branded-links",
"google-analytics",
"google-tag-manager",
"cloudflare"
],
"author": {
"name": "Jacky Liang",
"email": "hello@mrjackyliang.com",
"url": "https://www.mrjackyliang.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cbnventures/branded-short-links/issues"
},
"files": [],
"homepage": "https://github.com/cbnventures/branded-short-links",
"engines": {
"node": ">=20"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@hookform/resolvers": "3.10.0",
"@monaco-editor/react": "4.6.0",
"@mui/material": "6.4.1",
"lodash": "4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"zod": "3.24.1"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20250121.0",
"@eslint/js": "9.18.0",
"@stylistic/eslint-plugin": "2.13.0",
"@types/lodash": "4.17.14",
"@types/node": "22.10.7",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"@vitejs/plugin-react": "4.3.4",
"eslint": "9.18.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "15.14.0",
"npm-run-all": "4.1.5",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-tsconfig-paths": "5.1.4",
"wrangler": "3.103.2"
}
}