-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 KB
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
{
"name": "resilientdb-sdk",
"version": "1.0.0",
"description": "The TypeScript SDK for ExpoLab's ResilientDB",
"main": "index.js",
"scripts": {
"test": "jest ./test",
"prettier": "prettier --write 'src/**/*.ts'",
"precommit": "tsc && npm run prettier && git add .",
"prepare": "husky install"
},
"author": "Steve Chen, Undergraduate Software Engineer in Research at ExpoLab",
"license": "ISC",
"devDependencies": {
"@types/crypto-js": "4.1.2",
"@types/jest": "29.5.7",
"@types/elliptic": "6.4.18",
"@types/lodash": "4.14.201",
"@types/luxon": "3.3.3",
"@types/node": "20.8.2",
"husky": "8.0.0",
"jest": "29.7.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"dependencies": {
"@babel/runtime-corejs3": "7.23.5",
"axios": "1.5.1",
"axios-retry": "3.8.0",
"bs58": "5.0.0",
"crypto-conditions": "2.2.1",
"elliptic": "6.5.4",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"lodash": "4.17.21",
"luxon": "3.4.3",
"pre-commit": "1.2.2",
"winston": "3.10.0"
}
}