forked from nilsml/practical-fp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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": "practical-fp",
"version": "0.0.1",
"description": "FP course with fp-ts",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"lint": "eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"build": "npx tsc --outDir out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nilsml/practical-fp.git"
},
"keywords": [
"fp-ts"
],
"author": "Nils Magne Lunde",
"license": "MIT",
"bugs": {
"url": "https://github.com/nilsml/practical-fp/issues"
},
"homepage": "https://github.com/nilsml/practical-fp#readme",
"dependencies": {
"dotenv": "^16.0.3",
"fp-ts": "^2.13.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
}
}