-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "raft_2022_10",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "[email protected]:dabeaz-course/raft_2022_10.git",
"author": "Rik Bauwens <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/jest": "^29.2.0",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/seamless-immutable": "^7.1.16",
"@types/split2": "^3.2.1",
"jest": "^29.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@types/node-fetch": "2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"bunyan": "^1.8.15",
"eslint": "^8.25.0",
"fp-ts": "^2.13.0",
"io-ts": "^2.2.19",
"io-ts-types": "^0.5.19",
"koa": "^2.13.4",
"koa-body": "^6.0.1",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5",
"node-fetch": "2",
"prettier": "^2.7.1",
"seamless-immutable": "^7.1.4",
"split2": "^4.1.0"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "yarn lint --fix src",
"lint:prettier": "yarn prettier --check src",
"lint:prettier:fix": "yarn prettier --write src",
"build": "tsc",
"server": "ts-node src/index.ts",
"client": "ts-node src/client/index.ts",
"test": "jest",
"type-check": "tsc -b"
}
}