21 lines
441 B
JSON
21 lines
441 B
JSON
|
{
|
||
|
"name": "06",
|
||
|
"version": "1.0.0",
|
||
|
"main": "index.js",
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"start": "node build/main.js",
|
||
|
"copy-inputs":"cp *input build/",
|
||
|
"build": "yarn run copy-inputs && tsc",
|
||
|
"watch": "yarn run build -- -w",
|
||
|
"monitor": "nodemon build/main.js testinput"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"nodemon": "^2.0.15",
|
||
|
"typescript": "^4.5.2"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^16.11.11"
|
||
|
}
|
||
|
}
|