-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.33 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
{
"name": "homepage",
"author": "INP146",
"github": "https://github.com/INP146/HomePage",
"homepage": "https://inp.la",
"cloudflare": {
"bindings": {
"GITHUB_TOKEN": {
"description": "GitHub GraphQL token. Create one from GitHub Settings > Developer settings > Personal access tokens."
},
"VITE_GITHUB_USERNAME": {
"description": "GitHub username shown in the profile, activity feed, and contribution graph."
},
"VITE_SITE_AUTHOR": {
"description": "Name shown in the footer copyright notice."
},
"VITE_SITE_KEYWORDS": {
"description": "Comma-separated keywords for the page metadata."
},
"VITE_SITE_NAME": {
"description": "Site name shown in the loader, page header, and browser title."
}
}
},
"private": true,
"version": "4.1.4",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit -p tsconfig.json && tsc --noEmit -p workers/tsconfig.json && vite build",
"build:cloudflare": "vue-tsc --noEmit -p tsconfig.json && tsc --noEmit -p workers/tsconfig.json && vite build --mode cloudflare",
"deploy": "pnpm deploy:cloudflare",
"deploy:api": "wrangler deploy --config workers/wrangler.jsonc",
"deploy:cloudflare": "wrangler deploy --config wrangler.jsonc",
"preview": "vite preview",
"format": "prettier --write src/",
"typecheck": "vue-tsc --noEmit -p tsconfig.json && tsc --noEmit -p workers/tsconfig.json",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix"
},
"dependencies": {
"element-plus": "^2.6.1",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"swiper": "^9.4.1",
"vue": "^3.4.21"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260708.1",
"@icon-park/vue-next": "^1.4.2",
"@types/node": "^20.19.43",
"@vicons/fa": "^0.12.0",
"@vicons/utils": "^0.1.4",
"@vitejs/plugin-vue": "^4.6.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"terser": "^5.29.1",
"typescript": "^5.9.3",
"unplugin-auto-import": "^0.11.5",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.5.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^0.14.7",
"vue-tsc": "^2.2.12",
"wrangler": "^4.107.1"
}
}