forked from AykutSarac/chatify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 764 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 764 Bytes
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
{
"name": "chatify",
"author": "https://github.com/AykutSarac",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"server": "node src/server/server.js",
"json-server": "json-server --watch db.json --port 5000",
"start": "concurrently \"npm run server\" \"npm run json-server\" \"npm run dev\""
},
"dependencies": {
"axios": "^0.21.2",
"fastify": "^4.20.0",
"fastify-cors": "^6.0.1",
"fastify-websocket": "^3.2.0",
"vue": "^3.0.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.2.4",
"@vue/compiler-sfc": "^3.0.5",
"concurrently": "^6.2.0",
"json-server": "^0.17.3",
"prettier": "^2.3.2",
"vite": "^2.4.0"
}
}