aim-oscar-server/package.json

22 lines
571 B
JSON
Raw Normal View History

2021-09-07 17:04:24 -04:00
{
"name": "aim-oscar-server",
"version": "1.0.0",
2021-09-11 14:46:51 -04:00
"main": "dist/src/index.js",
2021-09-07 17:04:24 -04:00
"license": "MIT",
"scripts": {
"dev:tsc": "tsc --watch",
2021-09-24 00:47:41 -04:00
"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",
2021-09-08 20:11:05 -04:00
"start": "tsc && node ./dist/index.js"
2021-09-07 17:04:24 -04:00
},
"devDependencies": {
2021-09-08 13:40:11 -04:00
"@tsconfig/node14": "^1.0.1",
2021-09-08 20:11:05 -04:00
"@types/node": "^16.7.13",
2021-09-08 13:40:11 -04:00
"nodemon": "^2.0.12",
"typescript": "^4.4.2"
},
"dependencies": {
"table-layout": "^3.0.0"
2021-09-07 17:04:24 -04:00
}
}