web/packages/responses/package.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2022-07-06 12:59:04 +03:00
{
"name": "@standardnotes/responses",
"version": "1.13.2",
2022-07-06 12:59:04 +03:00
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"description": "Common http responses used between Standard Notes clients and servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"prestart": "yarn clean",
"start": "tsc -p tsconfig.json --watch",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"test": "jest spec --coverage --passWithNoTests"
2022-07-06 12:59:04 +03:00
},
"devDependencies": {
2022-11-16 18:52:21 +03:00
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "*",
"eslint": "*",
"eslint-plugin-prettier": "*",
2022-11-16 18:52:21 +03:00
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "*"
2022-07-06 12:59:04 +03:00
},
"dependencies": {
"@standardnotes/common": "^1.46.3",
2022-07-06 12:59:04 +03:00
"@standardnotes/features": "workspace:*",
2023-01-20 02:05:10 +03:00
"@standardnotes/security": "^1.7.5",
2022-07-06 12:59:04 +03:00
"reflect-metadata": "^0.1.13"
}
}