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

42 lines
1.1 KiB
JSON
Raw Normal View History

2023-05-07 19:00:55 -04:00
{
2023-05-08 13:58:47 -04:00
"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",
2024-03-12 18:34:04 -04:00
"watch": "esbuild src/index.ts --bundle --outfile=build/sandbox.cjs --format=cjs --platform=node --watch",
2024-03-11 19:43:46 -04:00
"check": "tsc -noEmit",
2023-08-26 13:46:59 -04:00
"format": "prettier --write .",
2024-02-17 15:49:30 -05:00
"lint": "prettier --check . && eslint .",
"start": "node ./build/sandbox.cjs"
2023-05-08 13:58:47 -04:00
},
"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",
2023-11-19 21:06:40 -05:00
"@types/fs-extra": "^11.0.4",
2024-03-20 09:33:48 -04:00
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"esbuild": "^0.20.2",
2024-03-11 13:37:26 -04:00
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
2023-05-08 13:58:47 -04:00
},
"dependencies": {
2024-03-12 12:16:07 -04:00
"bwcontest-shared": "file:../shared",
2024-03-11 13:37:26 -04:00
"dotenv": "^16.4.5",
2023-12-19 16:59:34 -05:00
"fs-extra": "^11.2.0",
2024-03-20 09:33:48 -04:00
"rollup": "^4.13.0",
"simple-git": "^3.23.0",
2024-01-15 18:39:47 -05:00
"tree-kill": "^1.2.2",
2023-05-08 13:58:47 -04:00
"url-join": "^5.0.0",
2023-10-18 14:32:48 -04:00
"zod": "^3.22.4"
2023-05-08 13:58:47 -04:00
}
2023-05-07 19:00:55 -04:00
}