-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "applied-fp-ts",
"homepage": "https://github.com/doubleloop-io/applied-fp-workshop-ts",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Matteo Baglini",
"email": "[email protected]"
},
"devDependencies": {
"@types/node": "22.10.2",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cspell": "8.17.0",
"eslint": "8.57.1",
"fastify": "5.2.0",
"fp-ts": "2.16.9",
"jest": "29.7.0",
"prettier": "3.4.2",
"prettier-plugin-jsdoc": "1.3.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"ts-pattern": "5.6.0",
"typescript": "5.7.2"
},
"scripts": {
"clean": "rm -rf dist node_modules",
"build": "tsc -p tsconfig.json",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0 --fix",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"spell": "cspell '**/*.*'",
"eval": "ts-node",
"app": "yarn build && node dist/app/index.js",
"web": "yarn build && node dist/webapp/index.js"
}
}