generated from b00gizm/nodejs-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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": "@b00gizm/typed-chain",
"description": "A type-safe way to combine interdependent functions into a callable chain",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Pascal Cremer",
"keywords": [
"typescript",
"type-safe",
"utils",
"functional",
"fp"
],
"dependencies": {},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"expect-type": "^0.16.0",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-html-reporter": "^3.10.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"scripts": {
"build": "tsc",
"start": "ts-node -r tsconfig-paths/register src/index",
"test": "jest --config='./jest.config.ts'",
"prepare": "husky install"
}
}