-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.57 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
{
"scripts": {
"dev": "nodemon src/index.ts",
"build": "npx tsc",
"start": "node build/index.js",
"clean": "rm -rf build",
"test": "pnpm clean && npx tsc && mocha ./test/**/*.test.js",
"rollup": "rollup --config rollup.config.js --configPlugin typescript",
"format": "prettier --write \"./src/**/*.{js,ts}\"",
"lint": "eslint . --ext .ts",
"precommit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"axios": "1.6.2",
"csv-parse": "5.5.3",
"express": "4.18.2",
"mysql2": "3.6.5",
"sequelize": "6.35.2"
},
"devDependencies": {
"@types/chai": "4.3.11",
"@types/express": "4.17.21",
"@types/mocha": "10.0.6",
"@types/node": "20.10.5",
"chai": "4.3.10",
"dotenv": "16.3.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"nodemon": "3.0.2",
"prettier": "3.1.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"lint-staged": {
"*.{js,ts}": "pnpm format"
},
"name": "bitcoin-query",
"description": "A javascript Bitcoin library for `node.js`. Written in `TypeScript`. Connect to `Mysql` database for saving data",
"version": "0.0.3",
"main": "./package/rpc.js",
"author": "dangbt",
"license": "ISC",
"types": "./package/rpc.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dangbt/bitcoin-query.git"
},
"keywords": [
"bitcoin",
"nodejs",
"typescript"
],
"bugs": {
"url": "https://github.com/dangbt/bitcoin-query/issues"
},
"homepage": "https://github.com/dangbt/bitcoin-query#readme"
}