-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
42
43
{
"name": "practical-fp-in-ts-may-2021",
"private": "true",
"license": "UNLICENSED",
"scripts": {
"test": "jest",
"postinstall": "husky install",
"ci": "yarn build && yarn test",
"build": "ttsc -p tsconfig.build.json"
},
"devDependencies": {
"@effect-ts/jest": "^0.31.0",
"@effect-ts/tracing-plugin": "^0.14.15",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-codegen": "^0.16.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"husky": "^7.0.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"ttypescript": "^1.5.12",
"typescript": "4.4.4",
"typescript-transform-paths": "^3.3.1",
"yarn-deduplicate": "^3.1.0"
},
"dependencies": {
"@effect-ts/core": "^0.45.2",
"@effect-ts/node": "^0.30.0",
"abortcontroller-polyfill": "^1.7.3",
"isomorphic-fetch": "^3.0.0"
}
}