-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 986 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "fp-ts-training",
"version": "1.0.0",
"description": "Learning fp-ts while having fun",
"author": "Hugo Saracino <[email protected]>",
"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",
"check": "yarn tsc --noEmit",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"test:solution": "TEST_SOLUTION=true jest --runInBand",
"test:solution-watch": "yarn test:solution --watch"
},
"dependencies": {
"decod": "^6.1.6",
"fp-ts": "^2.16.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"eslint": "^8.39.0",
"eslint-plugin-fp": "^2.3.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]"
}