mirror of
https://github.com/amigan/aim-oscar-server.git
synced 2024-11-21 20:19:47 -05:00
21 lines
571 B
JSON
21 lines
571 B
JSON
{
|
|
"name": "aim-oscar-server",
|
|
"version": "1.0.0",
|
|
"main": "dist/src/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev:tsc": "tsc --watch",
|
|
"dev:nodemon:auth": "nodemon --watch ./dist --delay 200ms dist/src/main-auth.js",
|
|
"dev:nodemon:chat": "nodemon --watch ./dist --delay 200ms dist/src/main-chat.js",
|
|
"start": "tsc && node ./dist/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node14": "^1.0.1",
|
|
"@types/node": "^16.7.13",
|
|
"nodemon": "^2.0.12",
|
|
"typescript": "^4.4.2"
|
|
},
|
|
"dependencies": {
|
|
"table-layout": "^3.0.0"
|
|
}
|
|
}
|