-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "getting-started-fp-ts",
"version": "0.0.0",
"description": "Typescript Functional Programming with fp-ts",
"author": "Minsu Kim <[email protected]>",
"dependencies": {
"tslib": "~2.1.0"
},
"devDependencies": {
"@types/jest": "~26.0.20",
"@types/node": "~14.14.31",
"@typescript-eslint/eslint-plugin": "~4.16.1",
"@typescript-eslint/parser": "~4.16.1",
"eslint": "~7.21.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jest": "~24.1.5",
"fast-check": "^2.17.0",
"fp-ts": "^2.10.2",
"jest": "~26.6.3",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.5.2",
"tsutils": "~3.20.0",
"typescript": "~4.2.2"
},
"scripts": {
"start": "node build/src/index.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"pretty": "prettier --write \"./**/*.{ts,tsx,js,jsx,json}\"",
"test": "TZ=UTC jest --coverage",
"test:watch": "jest --watch"
},
"license": "MIT"
}