Sandbox (#1610) (#1611)
Showing
.github/workflows/build-sandbox-image.yml
0 → 100644
Makefile
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
projects/app/public/imgs/workflow/code.svg
0 → 100644
projects/sandbox/.dockerignore
0 → 100644
projects/sandbox/.eslintrc.js
0 → 100644
projects/sandbox/.gitignore
0 → 100644
projects/sandbox/Dockerfile
0 → 100644
projects/sandbox/README.md
0 → 100644
projects/sandbox/nest-cli.json
0 → 100644
projects/sandbox/package.json
0 → 100644
| { | ||
| "name": "sandbox", | ||
| "version": "0.0.1", | ||
| "description": "", | ||
| "author": "", | ||
| "private": true, | ||
| "license": "UNLICENSED", | ||
| "scripts": { | ||
| "build": "nest build", | ||
| "start": "nest start", | ||
| "dev": "nest start --watch", | ||
| "start:debug": "nest start --debug --watch", | ||
| "start:prod": "node dist/main", | ||
| "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
| "test": "jest", | ||
| "test:watch": "jest --watch", | ||
| "test:cov": "jest --coverage", | ||
| "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", | ||
| "test:e2e": "jest --config ./test/jest-e2e.json" | ||
| }, | ||
| "dependencies": { | ||
| "@fastify/static": "^7.0.4", | ||
| "@nestjs/common": "^10.0.0", | ||
| "@nestjs/core": "^10.0.0", | ||
| "@nestjs/platform-fastify": "^10.3.8", | ||
| "@nestjs/swagger": "^7.3.1", | ||
| "fastify": "^4.27.0", | ||
| "isolated-vm": "^4.7.2", | ||
| "node-gyp": "^10.1.0", | ||
| "reflect-metadata": "^0.2.0", | ||
| "rxjs": "^7.8.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@nestjs/cli": "^10.0.0", | ||
| "@nestjs/schematics": "^10.0.0", | ||
| "@nestjs/testing": "^10.0.0", | ||
| "@types/jest": "^29.5.2", | ||
| "@types/node": "^20.3.1", | ||
| "@types/supertest": "^6.0.0", | ||
| "@typescript-eslint/eslint-plugin": "^6.0.0", | ||
| "@typescript-eslint/parser": "^6.0.0", | ||
| "eslint": "^8.42.0", | ||
| "jest": "^29.5.0", | ||
| "source-map-support": "^0.5.21", | ||
| "supertest": "^6.3.3", | ||
| "ts-jest": "^29.1.0", | ||
| "ts-loader": "^9.4.3", | ||
| "ts-node": "^10.9.1", | ||
| "tsconfig-paths": "^4.2.0", | ||
| "typescript": "^5.1.3" | ||
| }, | ||
| "jest": { | ||
| "moduleFileExtensions": [ | ||
| "js", | ||
| "json", | ||
| "ts" | ||
| ], | ||
| "rootDir": "src", | ||
| "testRegex": ".*\\.spec\\.ts$", | ||
| "transform": { | ||
| "^.+\\.(t|j)s$": "ts-jest" | ||
| }, | ||
| "collectCoverageFrom": [ | ||
| "**/*.(t|j)s" | ||
| ], | ||
| "coverageDirectory": "../coverage", | ||
| "testEnvironment": "node" | ||
| } | ||
| } |
projects/sandbox/src/app.module.ts
0 → 100644
projects/sandbox/src/main.ts
0 → 100644
projects/sandbox/src/response.ts
0 → 100644
projects/sandbox/src/utils.ts
0 → 100644
projects/sandbox/src/worker/runJs.ts
0 → 100644
projects/sandbox/src/worker/utils.ts
0 → 100644
projects/sandbox/test/app.e2e-spec.ts
0 → 100644
projects/sandbox/test/jest-e2e.json
0 → 100644
projects/sandbox/tsconfig.build.json
0 → 100644
projects/sandbox/tsconfig.json
0 → 100644
Please
register
or
sign in
to comment