-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.96 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
60
61
62
63
64
65
66
67
{
"name": "messagebox",
"version": "1.0.0",
"main": "./out/src/index.js",
"type": "module",
"scripts": {
"start": "node out/src/index.js",
"dev": "nodemon --inspect --watch .env --watch src --exec tsx src/index.ts",
"build": "tsc",
"test": "jest --config=jest.config.ts",
"test:integration": "jest --config=jest.config.integration.ts",
"test:coverage": "jest --coverage --coverageReporters=text --coverageReporters=html",
"test:watch": "jest --watch",
"lint": "ts-standard --fix .",
"clean": "rimraf dist node_modules && npm install",
"prebuild": "rimraf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/body-parser": "^1.19.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/knex": "^0.15.2",
"@types/mock-knex": "^0.4.8",
"@types/mysql": "^2.15.26",
"@types/node": "^22.13.1",
"@types/prettyjson": "^0.0.33",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"ejs": "^3.1.10",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"jest": "^29.7.0",
"mock-knex": "^0.4.13",
"nodemon": "^2.0.22",
"rimraf": "^6.0.1",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"dependencies": {
"@bsv/auth-express-middleware": "^1.0.8",
"@bsv/authsocket": "^1.0.0",
"@bsv/payment-express-middleware": "^1.0.3",
"@bsv/sdk": "^1.3.28",
"@bsv/wallet-toolbox": "^1.1.55",
"authrite-express": "^0.4.36",
"body-parser": "^1.20.3",
"dotenv": "^8.6.0",
"express": "^4.21.2",
"knex": "^2.5.1",
"mysql2": "^3.12.0",
"prettyjson": "^1.2.5"
}
}