web/packages/models/package.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2022-07-05 21:47:11 +03:00
{
"name": "@standardnotes/models",
"version": "1.29.1",
2022-07-05 21:47:11 +03:00
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"description": "Models used in SNJS library",
"main": "dist/index.js",
"author": "Standard Notes",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"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 . --ext .ts",
"test": "jest"
2022-07-05 21:47:11 +03:00
},
"devDependencies": {
2022-07-13 10:28:13 +03:00
"@types/jest": "^28.1.5",
2022-07-05 21:47:11 +03:00
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^28.1.2",
2022-07-12 12:52:34 +03:00
"ts-jest": "^28.0.5",
2022-07-08 17:17:18 +03:00
"typescript": "*"
2022-07-05 21:47:11 +03:00
},
"dependencies": {
2022-10-11 13:20:58 +03:00
"@standardnotes/common": "^1.39.0",
2022-07-05 21:47:11 +03:00
"@standardnotes/features": "workspace:*",
2022-07-06 15:50:56 +03:00
"@standardnotes/responses": "workspace:*",
2022-07-06 12:33:25 +03:00
"@standardnotes/utils": "workspace:*",
2022-07-05 21:47:11 +03:00
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13"
}
}