-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.88 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
{
"author": "EDM115 <[email protected]> (https://edm115.dev)",
"bugs": {
"url": "https://github.com/EDM115-org/Senescalade/issues",
"email": "[email protected]"
},
"contributors": [
"EDM115 <[email protected]> (https://edm115.dev)",
"EuphoriaReal <[email protected]>",
"yamakajump <[email protected]> (https://yamakajump.com)"
],
"description": "Une webapp en Nuxt pour la gestion des inscriptions de l'association Senescalade",
"dependencies": {
"@fullcalendar/core": "6.1.15",
"@fullcalendar/interaction": "6.1.15",
"@fullcalendar/timegrid": "6.1.15",
"@fullcalendar/vue3": "6.1.15",
"@mdi/font": "7.4.47",
"@vuelidate/core": "2.0.3",
"@vuelidate/validators": "2.0.4",
"bcryptjs": "2.4.3",
"cookiejs": "2.1.3",
"jsonwebtoken": "9.0.2",
"jspdf": "2.5.2",
"mysql2": "3.11.3",
"nodemailer": "6.9.15",
"ofetch": "1.4.1",
"vue": "3.5.12",
"vue-router": "4.4.5",
"vuetify": "3.7.3"
},
"devDependencies": {
"@nuxt/devtools": "1.6.0",
"@nuxt/eslint": "0.6.0",
"@nuxtjs/google-fonts": "3.2.0",
"@nuxtjs/i18n": "8.5.5",
"@pinia/nuxt": "0.5.5",
"@stylistic/eslint-plugin": "2.9.0",
"cross-env": "7.0.3",
"dotenv-cli": "7.4.2",
"env-cmd": "10.1.0",
"eslint": "9.13.0",
"eslint-plugin-vue": "9.29.0",
"nuxt": "3.13.2",
"pinia": "2.2.4",
"rimraf": "6.0.1",
"sass-embedded": "1.80.3",
"sass-loader": "16.0.2",
"vite-plugin-vuetify": "2.0.4"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"homepage": "https://github.com/EDM115-org/Senescalade",
"keywords": [
"nuxt",
"vuetify",
"escalade",
"senescalade"
],
"license": "MIT",
"name": "senescalade",
"overrides": {
"@nuxt/devtools": "1.6.0",
"eslint": "9.13.0"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/EDM115-org/Senescalade.git"
},
"scripts": {
"_dev": "cross-env VITE_CJS_IGNORE_WARNING=1 nuxi dev -p $DEV_PORT",
"_dev-expose": "cross-env VITE_CJS_IGNORE_WARNING=1 nuxi dev -p $DEV_PORT --host",
"_start": "cross-env PORT=$DEV_PORT VITE_CJS_IGNORE_WARNING=1 nuxi start",
"analyze": "nuxi cleanup && nuxi analyze",
"build": "nuxi cleanup && nuxi build",
"dev": "node -e \"const { spawn } = require('child_process'); const isWindows = process.platform === 'win32'; const command = isWindows ? 'env-cmd' : 'dotenv'; const args = isWindows ? ['cross-env-shell', 'nuxi dev -p $DEV_PORT'] : ['--', 'npm', 'run', '_dev']; const proc = spawn(command, args, { stdio: 'inherit', shell: true });\"",
"dev-expose": "node -e \"const { spawn } = require('child_process'); const isWindows = process.platform === 'win32'; const command = isWindows ? 'env-cmd' : 'dotenv'; const args = isWindows ? ['cross-env-shell', 'nuxi dev -p $DEV_PORT --host'] : ['--', 'npm', 'run', '_dev-expose']; const proc = spawn(command, args, { stdio: 'inherit', shell: true });\"",
"docker-restart": "docker compose restart senescalade",
"docker-start": "docker compose build --no-cache && docker compose up -d --remove-orphans --wait",
"docker-stop": "docker compose stop",
"docker-stop-clean": "docker compose down -v",
"generate": "nuxi generate",
"i": "npm i --no-audit --no-fund",
"i-clean": "rimraf package-lock.json node_modules && npm run i",
"i-verbose": "npm i --no-audit --no-fund --verbose",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"preview": "nuxi preview",
"start": "node -e \"const { spawn } = require('child_process'); const isWindows = process.platform === 'win32'; const command = 'npm'; const args = isWindows ? ['run', 'build && env-cmd cross-env-shell PORT=$DEV_PORT nuxi start'] : ['run', 'build && dotenv -- npm run _start']; const proc = spawn(command, args, { stdio: 'inherit', shell: true });\""
},
"type": "module",
"version": "1.0.2"
}