-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "hamok",
"version": "2.6.0",
"description": "Lightweight Distributed Object Storage on RAFT consensus algorithm",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"dev": "nodemon -x ts-node src/main.ts",
"build": "tsc",
"test": "jest --config jest.config.js",
"lint": "eslint --ext .ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balazskreith/hamok-ts.git"
},
"keywords": [
"raft",
"distributed",
"storage"
],
"author": "Balazs Kreith",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/balazskreith/hamok-ts/issues"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
},
"homepage": "https://github.com/balazskreith/hamok-ts#readme",
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"pino": "^9.3.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@tsconfig/node20": "^1.0.2",
"@types/events": "^3.0.0",
"@types/jest": "^29.5.1",
"@types/pino": "^7.0.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.44.0",
"jest": "^29.5.0",
"nodemon": "^3.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}