-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "building-dsls-in-ts",
"private": "true",
"license": "UNLICENSED",
"scripts": {
"test": "jest",
"postinstall": "husky install",
"ci": "yarn test",
"build": "ttsc -p tsconfig.build.json",
"dev": "ts-node --compiler ttypescript --project tsconfig.json -r @effect-ts/core/Tracing/Enable"
},
"devDependencies": {
"@effect-ts/tracing-plugin": "^0.10.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"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.23.2",
"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.39.2"
}
}