-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 4.2 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
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vue-highcanfly",
"sideEffects": [
"src/assets/styles/index.css"
],
"homepage": "https://www.highcanfly.club/",
"version": "1.1.0",
"type": "module",
"description": "HighCanFly website with Vue3/TailwindCSS",
"repository": "https://github.com/eltorio/vue-highcanfly",
"license": "MIT",
"scripts": {
"prepare-env": "node --experimental-fetch --loader ts-node/esm ./prepare-env.ts",
"update": "npx npm-check-updates -u",
"serve": "node --experimental-fetch --loader ts-node/esm ./prepare-env.ts && vite ",
"buildmin": "vite build",
"wrangler": "npx wrangler pages dev -- npm run serve",
"wrangler-dev": "npx wrangler pages dev --kv KV_TOKENS --local-protocol http --proxy 5173 -- npx vite ",
"wrangler-prod": "npm run build-prod && npx wrangler pages dev --kv KV_TOKENS --local-protocol http --proxy 5173 -- npx vite preview ",
"licenses": "gulp licenses",
"licensesSrc": "gulp licensesSrc",
"build": "node --experimental-fetch --loader ts-node/esm ./prepare-env.ts && node jwks.js && npx vite build && gulp licenses",
"build-prod": "CF_PAGES=\"1\" __DEBUG__=\"0\" node --experimental-fetch --loader ts-node/esm ./prepare-env.ts && node jwks.js && npx vite build && gulp licenses",
"build-cf": "npm run prepare-env && node jwks.js && npx vite build && gulp licenses",
"create-ca": "openssl req -x509 -sha256 -days 3562 -nodes -newkey rsa:4096 -subj '/CN=demo.highcanly.club/C=FR/L=Flers-en-Escrebieux' -keyout localhost-rootCA.key -out localhost-rootCA.pem",
"create-key": "openssl genrsa 4096 > localhost.key",
"create-csr": "openssl req -new -key localhost.key -subj '/CN=localhost/C=FR/L=Flers-en-Escrebieux' > localhost.csr",
"create-crt": "openssl x509 -req -in localhost.csr -out localhost.pem -sha256 -CA localhost-rootCA.pem -days 3600 -CAkey localhost-rootCA.key -CAcreateserial -CAserial localhost-rootCA.srl",
"create-cert": "npm run create-ca && npm run create-key && npm run create-csr && npm run create-crt"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.3",
"@cloudinary/url-gen": "^1.21.0",
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@highcanfly/meteo": "^1.0.14",
"@popperjs/core": "2.11.8",
"@sanity/client": "^6.24.1",
"@sanity/image-url": "^1.1.0",
"@sctg/lazy-vue": "^1.0.3",
"@vuepic/vue-datepicker": "^10.0.0",
"@vueuse/core": "^12.2.0",
"basiclightbox": "^5.0.4",
"buffer": "^6.0.3",
"cesium": "^1.124.0",
"chart.js": "^4.4.7",
"@highcanfly/crypto-es": "^2.1.1",
"dexie": "^4.0.10",
"gulp-append-prepend": "1.0.9",
"jose": "^5.9.6",
"leaflet": "^1.9.4",
"path-browserify": "^1.0.1",
"qrcode.vue": "^3.6.0",
"sanity-blocks-vue-component": "^1.0.1",
"vue": "^3.5.13",
"vue-agile": "^2.0.0",
"vue-instantsearch": "^4.19.12",
"vue-router": "^4.5.0",
"vue3-openlayers": "^11.3.0",
"walkjs": "^6.0.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@fullhuman/postcss-purgecss": "^7.0.2",
"@highcanfly-club/fontawesome": "^1.2.0",
"@sanity/types": "^3.68.3",
"@sctg/code-stats": "^0.1.4",
"@sctg/fontminify": "^1.0.4",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/leaflet": "^1.9.15",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"fs-extra": "^11.2.0",
"geojson": "^0.5.0",
"gitlog": "^5.1.0",
"glob": "^11.0.0",
"glob-all": "^3.3.1",
"gulp": "^5.0.0",
"gulp-append-prepend": "^1.0.9",
"gulp-if": "^3.0.0",
"gulp-noop": "^1.0.1",
"gulp-replace": "^1.1.4",
"node-fetch": "^3.3.2",
"npm-check-updates": "^17.1.13",
"postcss": "^8.4.49",
"postcss-purgefonts": "^1.0.2",
"rollup-plugin-external-globals": "^0.13.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"schema-dts": "^1.1.2",
"serve-static": "^1.16.2",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"wrangler": "^3.99.0"
},
"overrides": {
"@types/react": "0.14.27"
},
"keywords": []
}