mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
31 lines
928 B
JSON
31 lines
928 B
JSON
{
|
|
"name": "@roleypoly/api",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "./src/index.ts",
|
|
"scripts": {
|
|
"build": "yarn build:dev --minify",
|
|
"build:dev": "esbuild --bundle --sourcemap --platform=node --format=esm --outdir=dist --out-extension:.js=.mjs ./src/index.ts",
|
|
"lint:types": "tsc --noEmit",
|
|
"posttest": "rm .env",
|
|
"pretest": "cp ../../.env.example .env && yarn build",
|
|
"start": "miniflare --watch --debug",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^3.3.1",
|
|
"@roleypoly/misc-utils": "*",
|
|
"@roleypoly/types": "*",
|
|
"@types/node": "^17.0.13",
|
|
"esbuild": "^0.14.16",
|
|
"itty-router": "^2.4.10",
|
|
"jest-environment-miniflare": "^2.2.0",
|
|
"lodash": "^4.17.21",
|
|
"miniflare": "^2.2.0",
|
|
"normalize-url": "^4.5.1",
|
|
"ts-jest": "^27.1.3",
|
|
"tweetnacl": "^1.0.3",
|
|
"ulid-workers": "^2.1.0"
|
|
}
|
|
}
|