-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 865 Bytes
/
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
{
"name": "ts-experiments",
"version": "0.0.0",
"description": "A small collection of Typescript experiments",
"scripts": {
"test": "npx jest",
"prepare": "npx husky install",
"pretty": "npx prettier --write .",
"check": "npx tsc --noEmit"
},
"keywords": [],
"author": "Artem E. Knyazev <artem.e.knyazev@yandex.ru>",
"license": "MIT",
"dependencies": {
"fp-ts": "2.11.5",
"fp-ts-contrib": "0.1.26"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-typescript": "7.16.0",
"@types/jest": "27.0.3",
"babel-jest": "27.3.1",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "12.0.3",
"prettier": "2.4.1",
"typescript": "4.5.2"
},
"lint-staged": {
"src/**/*": "prettier --write --ignore-unknown"
}
}