-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 993 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
35
36
{
"name": "fp-lib",
"version": "1.0.0",
"description": "Library with common constructs for functional programming",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js --prof",
"build": "tsup src/index.ts --minify",
"mockServer": "node mockServer.js"
},
"keywords": [],
"author": "Ole Berg",
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"fp-ts": "^2.16.1",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.2.2",
"express": "^4.18.2"
}
}