-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "rsk-explorer-summarizer",
"version": "1.1.4",
"description": "Summarize data from RSK Explorer db",
"main": "index.js",
"author": "7alip <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node src/index",
"build": "tsc",
"lint": "eslint src/**",
"type-check": "tsc --pretty --noEmit",
"test": "jest",
"format": "prettier --config .prettierrc --write **/*.{ts,json}"
},
"dependencies": {
"mongodb": "^3.6.2"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/jest": "^26.0.15",
"@types/mongodb": "^3.5.31",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"config": {
"mongodbMemoryServer": {
"version": "4.4.1"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint && yarn type-check && yarn test"
}
}
}