Created dir /src, and moved the source files into it. Left package.json, README.md and settings.json out. Modified package.json to point to the new src dir.
17 lines
278 B
JSON
17 lines
278 B
JSON
{
|
|
"name": "wstest",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"nodemon": "^2.0.22",
|
|
"ws": "^8.13.0"
|
|
}
|
|
}
|