-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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": "hmac-tester",
"version": "1.0.0",
"description": "BitPay HMAC testing tool",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "husky install",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "NODE_ENV=test nyc mocha -r ts-node/register test/**/*.spec.ts",
"prepare": "husky"
},
"author": "Robert Brodie <[email protected]>",
"devDependencies": {
"@eslint/js": "9.18.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@ngrok/ngrok": "1.3.0",
"@types/chai": "4.3.11",
"@types/dotenv-flow": "3.3.3",
"@types/express": "5.0.0",
"@types/mocha": "10.0.7",
"@types/node": "22.5.0",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"@typescript-eslint/eslint-plugin": "8.20.0",
"chai": "4.3.10",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"mocha": "10.7.3",
"nodemon": "3.1.4",
"nyc": "17.0.0",
"prettier": "3.3.2",
"sinon": "18.0.0",
"sinon-chai": "3.7.0",
"ts-node": "10.9.1",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0"
},
"dependencies": {
"bitpay-sdk": "6.0.0",
"dotenv-flow": "4.1.0",
"express": "4.21.2",
"express-winston": "4.2.0",
"save-dev": "0.0.1-security",
"winston": "3.13.0"
},
"lint-staged": {
"*.{ts,js}": [
"./node_modules/.bin/prettier --write",
"./node_modules/.bin/eslint --fix"
]
}
}