-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 745 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 745 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
30
{
"name": "exvia-proto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "nodemon --watch server --watch shared --exec ts-node server/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@stablelib/ed25519": "^1.0.3",
"@stablelib/sha256": "^2.0.1",
"@stablelib/x25519": "^2.0.1"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@types/ws": "^8.18.1",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^5.4.10",
"ws": "^8.19.0"
}
}