-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.39 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.39 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@shardeum-foundation/monitor-server",
"version": "2.10.1",
"description": "Monitor server for the Shardus Enterprise server.",
"engines": {
"node": "20.19.3"
},
"main": "build/src/server.js",
"types": "build/src/server.d.ts",
"files": [
"build/**/*",
"src/**/*",
"archiverConfig.json"
],
"scripts": {
"start": "node .",
"update-docker": "sudo docker build -t registry.gitlab.com/shardus/monitor-server . && sudo docker push registry.gitlab.com/shardus/monitor-server",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"posttest": "jest-it-up",
"pretest": "npm run compile",
"lint": "eslint \"./src/**/*.ts\" &&",
"format-check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"format-fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"test": "jest --no-eslint",
"test:watch": "jest --watch --no-eslint",
"test:coverage": "jest --coverage --no-eslint",
"test:lint": "jest",
"release:prepatch": "npm run prepare && npm version prepatch --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:preminor": "npm run prepare && npm version preminor --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:premajor": "npm run prepare && npm version premajor --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:prerelease": "npm run prepare && npm version prerelease --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:patch": "npm run prepare && npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm run prepare && npm version minor && git push --follow-tags && npm publish",
"release:major": "npm run prepare && npm version major && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/shardeum/x-monitor-server/"
},
"publishConfig": {
"access": "public"
},
"author": "Shardus",
"license": "ISC",
"bin": {
"monitor-server": "build/src/server.js"
},
"dependencies": {
"@shardeum-foundation/lib-archiver-discovery": "1.3.1",
"@shardeum-foundation/monitor-client": "2.10.1",
"axios": "0.24.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.18.3",
"compression": "1.7.3",
"cookie-parser": "1.4.3",
"cors": "2.8.5",
"dotenv": "6.2.0",
"ejs": "3.1.7",
"eslint": "8.43.0",
"express": "4.16.4",
"helmet": "3.21.1",
"jwt-simple": "0.5.6",
"log4js": "6.9.1",
"log4js-extend": "0.2.1",
"method-override": "3.0.0",
"morgan": "1.9.1",
"passport": "0.6.0",
"passport-jwt": "4.0.1",
"passport-local": "1.0.0",
"prettier": "2.4.1",
"rotating-file-stream": "1.3.9",
"socket.io": "4.7.2",
"tail": "2.0.4",
"ws": "7.5.3"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "29.5.14",
"@types/node": "18.19.1",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/typescript-estree": "5.60.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-security": "1.7.1",
"gts": "3.1.1",
"jest": "29.7.0",
"jest-it-up": "4.0.1",
"np": "8.0.4",
"ts-jest": "29.2.6",
"typescript": "4.4.4"
},
"overrides": {
"qs": "6.5.3",
"jsonwebtoken": "9.0.0"
}
}