-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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": "mars-rover-kata",
"version": "1.0.0",
"license": "UNLICENSED",
"author": "Michael Arnaldi",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node -r ts-node/register src/index.ts",
"test": "jest",
"type-check": "tsc --noEmit",
"ci": "yarn type-check && yarn test --ci",
"autofix": "yarn prettier && yarn lint --fix && yarn prettier",
"prettier": "prettier --write \"./{src,test,demo}/**/*.ts\"",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@effect-ts/core": "^0.8.27",
"@effect-ts/jest": "^0.2.27",
"@effect-ts/monocle": "^0.7.28",
"@effect-ts/system": "^0.6.20",
"@types/jest": "^26.0.10",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^6.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"jest": "^26.6.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.1-rc"
}
}