-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 897 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
{
"name": "code",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "npx tsc -p tsconfig.json",
"log:curry": "ts-node ./src/CompositionAndCurrying.ts",
"log:option": "ts-node ./src/OptionSomeNone.ts",
"log:tail": "ts-node ./src/Recursion.ts",
"log:either": "ts-node ./src/Either.ts",
"log:list": "ts-node ./src/LinkedLists.ts",
"log:pattern": "ts-node ./src/PatternMatching.ts",
"log:monoid": "ts-node ./src/MagmaSemigroupMonoid.ts"
},
"dependencies": {
"@types/node": "^20.5.0",
"ts-node": "^10.9.1",
"ts-pattern": "^5.0.5",
"typescript": "^5.1.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3"
}
}