-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.61 KB
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
{
"name": "sysnode",
"version": "1.0.0",
"description": "Syscoin backend for masternode and governance stats",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"audit:prod": "npm audit --omit=dev --audit-level=critical"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.js",
"**/*.spec.js"
],
"collectCoverageFrom": [
"lib/**/*.js",
"routes/**/*.js",
"middleware/**/*.js",
"!**/node_modules/**"
]
},
"dependencies": {
"@syscoin/syscoin-js": "git+https://github.com/syscoin/syscoind-rpc.git#637a1de10522d1ce34a4e0f283c59b9d55bde814",
"axios": "^1.15.2",
"better-sqlite3": "^12.9.0",
"body-parser": "^2.2.2",
"cookie-parser": "^1.4.7",
"cors": "2.8.5",
"csv-parser": "3.0.0",
"express": "^4.22.1",
"express-rate-limit": "^8.3.2",
"fs": "0.0.1-security",
"geoip-country": "4.1.49",
"helmet": "^8.1.0",
"i18n-iso-countries": "7.5.0",
"moment": "^2.30.1",
"nodemailer": "^8.0.5",
"numeral": "2.0.6",
"papaparse": "^5.5.3",
"pretty-ms": "6.0.1",
"syscoinjs-lib": "^1.0.268",
"systeminformation": "^5.31.5",
"websocket": "1.0.34",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"supertest": "^7.2.2"
},
"keywords": [
"syscoin",
"masternode",
"governance",
"express",
"backend"
],
"author": "Your Name",
"license": "MIT"
}