-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 KB
/
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
37
38
39
40
41
{
"name": "practical-fp-in-ts-may-2021",
"private": "true",
"license": "UNLICENSED",
"scripts": {
"test": "jest",
"postinstall": "husky install",
"ci": "yarn test",
"build": "ttsc -p tsconfig.build.json"
},
"devDependencies": {
"@effect-ts/jest": "^0.25.1",
"@effect-ts/tracing-plugin": "^0.10.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-codegen": "^0.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "4.2.4",
"typescript-transform-paths": "^2.2.3",
"yarn-deduplicate": "^3.1.0"
},
"dependencies": {
"@effect-ts/core": "^0.37.8",
"@effect-ts/node": "^0.23.1"
}
}