626d013547
* switch from yarn to pnpm * Remove full-nym-wasm (#6796) * Remove nym-browser-extension (#6798) * Remove nym-browser-extension * remove unused from makefile * Remove Node tester (#6800) * Remove dom-utils (#6801) * gh-actions: remove pnpm version * nuke dist and pkg * add missing dependency * set node version to 24 and pnpm version to 11 * upgrade lock file from pnpm version 9 to 11 * pnpm add approved builds * yarn -> pnpm * upgrade jest version * yarn -> pnpm * Remove unused cfg; clippy! * pnpm: when dev mode is on, unfreeze the lock file * pnpm approve more scripts * pnpm syntax error * add `pnpm i` * disable eslint temporarily while switching to biome in later PR --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me>
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "nym-node-test-suite",
|
|
"version": "1.0.0",
|
|
"description": "a basic nym-node-api suite to test the nym-node-api",
|
|
"main": "dist/index.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"test:sandbox": "TEST_ENV=sandbox jest --forceExit --detectOpenHandles --passWithNoTests",
|
|
"test:prod": "TEST_ENV=prod jest --forceExit --detectOpenHandles --passWithNoTests",
|
|
"build": "tsc",
|
|
"lint": "eslint --fix --ext .js,.ts,.tsx .",
|
|
"cleanup": "rm -rf node_modules; rm -rf dist; pnpm install"
|
|
},
|
|
"author": "Nymtech",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": "18.1.0",
|
|
"npm": "8.x"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.27.2",
|
|
"eslint": "^8.51.0",
|
|
"form-data": "4.0.0",
|
|
"json-stringify-safe": "5.0.1",
|
|
"tslog": "../../../../../node_modules/tslog",
|
|
"uuid": "8.3.2",
|
|
"yaml": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.5",
|
|
"@types/node": "^20.8.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
|
"@typescript-eslint/parser": "^5.33.0",
|
|
"axios-mock-adapter": "^1.20.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"jest": "^28.1.3",
|
|
"jest-junit": "^14.0.0",
|
|
"prettier": "^3.0.3",
|
|
"process": "0.11.10",
|
|
"ts-jest": "28.0.7",
|
|
"typescript": "^4.7.4",
|
|
"uuidv4": "^6.2.12"
|
|
}
|
|
}
|