This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
55
56
{
"name": "xrpl-snapshot",
"version": "1.0.0",
"author": "Towo Labs AB",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"test": "jest --coverage --verbose --detectOpenHandles --testTimeout 60000",
"watch-test": "npm run test -- --watchAll",
"postinstall": "node node_modules/husky/lib/installer/bin install",
"lint": "yarn run eslint \"./src/**/*.ts*\" \"./test/**/*.ts*\"",
"lint-fix": "yarn run eslint --fix \"./src/**/*.ts*\" \"./test/**/*.ts*\""
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.167",
"@types/mongodb": "^3.6.3",
"@types/triple-beam": "1.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.17.0",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"fast-safe-stringify": "^2.0.7",
"lodash": "^4.17.20",
"mongodb": "^3.6.3",
"ripple-lib": "^1.9.0",
"winston": "^3.3.3",
"yargs": "^15.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --quiet --verbose"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/towolabs/xrpl-snapshot.git"
},
"bugs": {
"url": "https://github.com/towolabs/xrpl-snapshot/issues"
},
"homepage": "https://github.com/towolabs/xrpl-snapshot"
}