mirror of
https://github.com/amigan/aim-oscar-server.git
synced 2024-11-21 20:19:47 -05:00
16 lines
406 B
JSON
16 lines
406 B
JSON
{
|
|
"name": "aim-oscar-server",
|
|
"version": "1.0.0",
|
|
"main": "src/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "nodemon --ignore ./dist/ --watch ./src -e ts --exec 'tsc && node ./dist/index.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"
|
|
}
|
|
}
|