-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 995 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
37
38
{
"name": "vite-crypto-ticker-app",
"private": true,
"version": "0.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/webceyhan/vite-crypto-ticker-app.git"
},
"keywords": [],
"author": "Evren Ceyhan",
"license": "MIT",
"bugs": {
"url": "https://github.com/webceyhan/vite-crypto-ticker-app/issues"
},
"homepage": "https://github.com/webceyhan/vite-crypto-ticker-app#readme",
"scripts": {
"start": "node backend/main.js",
"dev": "concurrently \"npm:dev:backend\" \"npm:dev:frontend\" ",
"dev:frontend": "vite dev --host",
"dev:backend": "nodemon backend/main.js",
"build": "vite build",
"preview": "npm start"
},
"dependencies": {
"bootstrap": "^5.3.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"vue": "^3.2.25",
"ws": "^8.15.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.4",
"concurrently": "^7.6.0",
"nodemon": "^2.0.22",
"vite": "^2.9.16"
}
}