-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
57
58
59
{
"name": "bitcoin-core-api",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./build/index.js",
"build": "tsc",
"dev": "LOG_LEVEL=debug tsnd --transpile-only src --debug",
"test": "NODE_ENV=test jest --runInBand --no-cache --coverage",
"test:watch": "NODE_ENV=test jest --runInBand --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "26.6.3",
"lint-staged": "^10.5.4",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node-dev": "^1.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.js": "eslint --cache --fix"
}
}