-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 926 Bytes
/
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
{
"name": "elliptical",
"version": "1.0.0",
"description": "The most simple socket.io web-based live chatting platform with simple moderation features",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node .",
"start:dev": "concurrently \"vite\" \"node index.js --dev\"",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@vitejs/plugin-vue": "^5.1.2",
"autoprefixer": "^10.4.20",
"express": "^4.19.2",
"mongodb": "^6.8.0",
"nodejs-base64": "^2.0.0",
"postcss": "^8.4.41",
"showdown": "^2.1.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tailwindcss": "^3.4.10",
"uuid": "^10.0.0",
"vite": "^5.4.1",
"vue": "^3.4.38"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.3.3"
}
}