-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
101 lines (101 loc) · 3.37 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
{
"name": "skychat",
"private": false,
"version": "2.1.0",
"description": "Future-proof virtual cinema platform",
"types": "build/api/index.d.ts",
"main": "build/api/index.js",
"type": "module",
"files": [
"/build/api",
"/build/server"
],
"scripts": {
"reset": "sh app/script/reset.sh",
"setup": "sh app/script/setup.sh",
"build": "concurrently \"tsc\" \"vite build\"",
"dev": "sh app/script/dev.sh",
"docker-command": "sh app/script/docker-command.sh",
"start": "sh app/script/start.sh",
"start:server": "sh app/script/start-server.sh",
"backup": "sh app/script/backup.sh",
"lint": "eslint app",
"test": "echo \"⚠ No test ⚠\""
},
"keywords": [],
"author": "7PH <[email protected]>",
"license": "ISC",
"dependencies": {
"events": "^3.3.0",
"isomorphic-ws": "^5.0.0",
"jsondiffpatch": "^0.6.0",
"mailgun.js": "^10.2.1",
"p-queue": "^8.0.1",
"pino": "^9.2.0",
"rate-limiter-flexible": "^5.0.3"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/node": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@types/escape-html": "1.0.4",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.5.0",
"@types/geoip-lite": "^1.4.4",
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.9",
"@types/node-fetch": "^2.6.11",
"@types/p-queue": "^3.2.1",
"@types/pg": "^8.11.6",
"@types/sha256": "^0.2.2",
"@types/striptags": "^3.1.1",
"@types/ua-parser-js": "^0.7.39",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"beautify-url": "^0.2.2",
"biguint-format": "^1.0.2",
"concurrently": "^8.2.2",
"escape-html": "^1.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"geoip-lite": "^1.4.10",
"googleapis": "^140.0.1",
"lodash": "^4.17.21",
"mousetrap": "^1.6.5",
"nodemon": "^3.1.4",
"pg": "^8.12.0",
"pinia": "^2.1.7",
"pino-pretty": "^11.2.1",
"postcss": "^8.4.39",
"risibank-web-api": "^1.1.1",
"sha256": "^0.2.0",
"sql-template-strings": "^2.2.2",
"striptags": "^3.2.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"ua-parser-js": "^1.0.38",
"vite": "^5.3.2",
"vue": "^3.4.31",
"vue-eslint-parser": "^9.4.3",
"vue-router": "^4.4.0",
"vue-smart-suggest": "^1.1.0",
"vue-toastification": "^2.0.0-rc.5",
"vuedraggable": "^4.1.0",
"ws": "^8.17.1"
}
}