-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 811 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 811 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": "xplosion",
"version": "1.0.0",
"description": "",
"private": true,
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"_dev": "webpack-dev-server --progress --colors --public --disable-host-check --host 0.0.0.0",
"dev:client": "vite",
"dev:srv": "node --watch src/server/main.js",
"_dist": "NODE_ENV=production webpack -p --progress --colors",
"dist": "vite build",
"format": "prettier --write ."
},
"author": "",
"packageManager": "yarn@4.5.3",
"devDependencies": {
"bootstrap": "^5.3.3",
"bootswatch": "^5.3.3",
"prettier": "^3.4.1",
"sass-embedded": "^1.81.0",
"socket.io-client": "^4.8.1",
"vite": "^6.0.2"
},
"dependencies": {
"express": "^5.0.1",
"socket.io": "^4.8.1"
}
}