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

39 lines
998 B
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",
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-01-15 15:35:13 -05:00
"@types/node": "^20.11.2",
2024-02-17 15:49:30 -05:00
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"esbuild": "^0.19.11",
2024-02-17 15:49:30 -05:00
"eslint": "^8.56.0",
2024-01-15 15:35:13 -05:00
"prettier": "^3.2.2",
2023-12-19 16:59:34 -05:00
"typescript": "^5.3.3"
2023-05-08 13:58:47 -04:00
},
"dependencies": {
2023-08-23 22:07:32 -04:00
"dotenv": "^16.3.1",
2023-12-19 16:59:34 -05:00
"fs-extra": "^11.2.0",
"rollup": "^4.12.1",
2024-01-15 15:35:13 -05:00
"simple-git": "^3.22.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
}