-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "signer-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start:prod": "node dist/src/index.js",
"start": "ts-node src/index.ts",
"start:dev": "npx nodemon",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write ."
},
"author": "BowTiedBlox",
"license": "ISC",
"dependencies": {
"@stacks/network": "^6.13.0",
"@stacks/stacking": "^6.15.0",
"@stacks/transactions": "^6.15.0",
"bignumber.js": "^9.1.2",
"bitcoin-address-validation": "^2.2.3",
"bitcoinjs-lib": "^6.1.5",
"bs58check": "^3.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2"
},
"devDependencies": {
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@eslint/js": "^9.4.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fast-check": "^3.19.0",
"globals": "^15.3.0",
"jest": "^29.7.0",
"nodemon": "^3.1.2",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
}
}