-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "fp-playground",
"type": "commonjs",
"version": "1.0.0",
"description": "Explore opportunities of functional programming through the prism of typescript and `fp-ts`",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Skippia/fp-playground"
},
"keywords": [
"functional-programming",
"fp-ts",
"monad",
"promises"
],
"types": "global.d.ts",
"scripts": {
"dev": "nodemon -e ts --watch src .env --exec \"tsc -p tsconfig.json --incremental && node --no-warnings ./build/src/main.js\"",
"start:debug": "node --inspect-brk ./build/src/main.js",
"ts:check": "tsc --noEmit",
"format": "prettier --config .prettierrc.cjs --write .",
"prebuild": "rm -rf build && npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@mostly-adequate/support": "^2.0.1",
"axios": "^1.7.7",
"base-64": "^1.0.0",
"fp-ts": "^2.16.9",
"jquery": "^3.7.1",
"monocle-ts": "^2.3.13",
"ramda": "^0.30.1",
"ts-adt": "^2.1.2",
"tslib": "~2.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@types/base-64": "^1.0.2",
"@types/jest": "^29.5.13",
"@types/jquery": "^3.5.32",
"@types/node": "^22.7.5",
"@types/ramda": "^0.30.2",
"eslint": "^9.12.0",
"eslint-plugin-functional": "^7.0.2",
"eslint-plugin-no-closure": "^1.0.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"rimraf": "~6.0",
"ts-jest": "~29.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
}
}