forked from unicovoit/unicovoit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.93 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
{
"name": "unicovoit",
"version": "1.4.4",
"private": true,
"license": "AGPL-3.0",
"author": "finxol <[email protected]>",
"packageManager": "[email protected]",
"homepage": "https://github.com/unicovoit/unicovoit",
"bugs": "https://github.com/unicovoit/unicovoit/issues",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"podman": "yarn podman:build && yarn podman:run",
"podman:build": "podman build -t unicovoit --secret id=AUTH0_CLIENTID,src=.dockersecrets/auth0_clientid.txt --secret id=AUTH0_DOMAIN,src=.dockersecrets/auth0_domain.txt .",
"podman:rebuild": "yarn podman:kill && yarn podman",
"podman:run": "podman-compose -f docker-compose.yml up -d",
"podman:kill": "podman kill unicovoit",
"docker": "yarn docker:build && yarn docker:run",
"docker:build": "sudo docker build -t --secret id=AUTH0_CLIENTID,src=.dockersecrets/auth0_clientid.txt --secret id=AUTH0_DOMAIN,src=.dockersecrets/auth0_domain.txt unicovoit .",
"docker:rebuild": "yarn docker:kill && yarn docker",
"docker:run": "sudo docker-compose -f docker-compose.yml up -d",
"docker:kill": "sudo docker kill unicovoit"
},
"dependencies": {
"@auth0/auth0-vue": "^1.0.2",
"@dansmaculotte/nuxt-security": "^0.0.6",
"@nuxt/content": "^1.15.1",
"@nuxtjs/auth-next": "^5.0.0-1667386184.dfbbb54",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/device": "^2.1.0",
"@nuxtjs/i18n": "^7.3.0",
"@nuxtjs/pwa": "^3.3.5",
"axios": "^0.27.2",
"cookie-parser": "^1.4.6",
"cookie-universal-nuxt": "^2.2.2",
"core-js": "^3.26.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-fileupload-validator": "^2.0.1",
"express-oauth2-jwt-bearer": "^1.2.0",
"express-rate-limit": "^6.7.0",
"fast-xml-parser": "^4.0.11",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.3",
"nodemailer": "^6.8.0",
"nuxt": "^2.15.8",
"nuxt-start": "^2.15.8",
"sharp": "^0.31.2",
"signale": "^1.4.0",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3",
"uuid": "^9.0.0",
"vue": "^2.7.9",
"vue-plausible": "^1.3.2",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.7.10",
"vuetify": "^2.6.12",
"vuetify-loader": "^1.9.2",
"webpack": "^4.46.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@capacitor/android": "^4.3.0",
"@capacitor/cli": "^4.3.0",
"@capacitor/core": "^4.3.0",
"@mdi/font": "^7.0.96",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/vuetify": "^1.12.3",
"@types/uuid": "^8.3.4",
"sass": "^1.56.1",
"sass-loader": "^10.1.1"
}
}