bw-hspc-contest-env/sandbox/package.json

39 lines
998 B
JSON

{
"name": "sandbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=build/sandbox.cjs --format=cjs --platform=node",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"start": "node ./build/sandbox.cjs"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"rollup": "^4.12.1",
"simple-git": "^3.22.0",
"tree-kill": "^1.2.2",
"url-join": "^5.0.0",
"zod": "^3.22.4"
}
}