This repository has been archived on 2023-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
fp-ts-training/package.json

35 lines
869 B
JSON
Raw Permalink Normal View History

2020-07-03 19:01:45 +03:00
{
"name": "fp-ts-training",
"version": "1.0.0",
"description": "Learning fp-ts while having fun",
"author": "Hugo Saracino <hugo@inato.com>",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/inato/fp-ts-training.git"
},
"homepage": "https://github.com/inato/fp-ts-training",
"scripts": {
"build": "yarn tsc -b",
2023-04-21 15:15:42 +03:00
"check": "yarn tsc --noEmit",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch"
2020-07-03 19:01:45 +03:00
},
"dependencies": {
2020-07-06 16:18:39 +03:00
"decod": "^6.1.6",
2023-04-21 15:15:42 +03:00
"fp-ts": "^2.14.0",
"tslib": "^2.5.0"
2020-07-03 19:01:45 +03:00
},
"devDependencies": {
2023-04-21 15:15:42 +03:00
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"eslint": "^8.39.0",
2020-07-03 19:01:45 +03:00
"eslint-plugin-fp": "^2.3.0",
2023-04-21 15:15:42 +03:00
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
2022-11-22 16:41:30 +03:00
},
2023-04-21 15:15:42 +03:00
"packageManager": "yarn@3.5.0"
2022-01-11 16:47:57 +03:00
}