@vizlib/synchronization-service 0.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "@vizlib/synchronization-service",
3
+ "version": "0.7.5",
4
+ "description": "",
5
+ "author": "",
6
+ "license": "UNLICENSED",
7
+ "scripts": {
8
+ "build:prod:pre": "shx mv src/buildConfig.json src/buildConfig.json.bak && shx mv src/buildConfig.prod.json src/buildConfig.json",
9
+ "build:prod:main": "ncc build src/main.ts --out lib/ --minify --no-cache",
10
+ "build:prod:post": "shx mv src/buildConfig.json src/buildConfig.prod.json && shx mv src/buildConfig.json.bak src/buildConfig.json",
11
+ "build:prod": "npm run build:prod:pre && npm run build:prod:main && npm run build:prod:post",
12
+ "build": "nest build",
13
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
14
+ "start": "nest start",
15
+ "start:dev": "nest start --watch",
16
+ "start:debug": "nest start --debug --watch",
17
+ "start:prod": "node dist/main",
18
+ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
19
+ "lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
20
+ "test": "jest",
21
+ "test:watch": "jest --watch",
22
+ "test:cov": "jest --coverage",
23
+ "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
24
+ "test:e2e": "jest --config ./test/jest-e2e.json",
25
+ "prepack": "npm install && npm run build:prod",
26
+ "remove:keyv-file": "rimraf ./data/sync-service-config.json",
27
+ "publish-to-npm": "npm publish --access restricted",
28
+ "publish-to-npm:dry": "npm publish --access restricted --dry-run"
29
+ },
30
+ "files": [
31
+ "lib/index.js",
32
+ "lib/client-dist/*.js"
33
+ ],
34
+ "dependencies": {
35
+ "@nestjs/common": "^11.1.19",
36
+ "@nestjs/core": "^11.1.19",
37
+ "@nestjs/platform-express": "^11.1.19",
38
+ "@nestjs/platform-socket.io": "^11.1.19",
39
+ "@nestjs/websockets": "^11.1.19",
40
+ "@vercel/ncc": "^0.38.3",
41
+ "axios": "^1.15.2",
42
+ "class-transformer": "^0.5.1",
43
+ "class-validator": "^0.15.1",
44
+ "dotenv": "^16.4.5",
45
+ "keyv": "^5.3.1",
46
+ "keyv-file": "^5.1.2",
47
+ "pino": "^10.3.1",
48
+ "pino-pretty": "^13.1.3",
49
+ "reflect-metadata": "^0.2.0",
50
+ "rotating-file-stream": "^3.2.9",
51
+ "rxjs": "^7.8.1",
52
+ "uuid": "^11.0.5"
53
+ },
54
+ "devDependencies": {
55
+ "@nestjs/cli": "^11.0.21",
56
+ "@nestjs/schematics": "^11.1.0",
57
+ "@nestjs/testing": "^11.1.19",
58
+ "@types/express": "^5.0.6",
59
+ "@types/jest": "^29.5.2",
60
+ "@types/lodash": "^4.17.13",
61
+ "@types/node": "^20.3.1",
62
+ "@types/node-persist": "^3.1.8",
63
+ "@types/supertest": "^6.0.0",
64
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
65
+ "@typescript-eslint/parser": "^8.0.0",
66
+ "eslint": "^8.42.0",
67
+ "eslint-config-prettier": "^9.0.0",
68
+ "eslint-plugin-prettier": "^5.0.0",
69
+ "jest": "^29.5.0",
70
+ "lodash": "^4.17.21",
71
+ "prettier": "^3.0.0",
72
+ "rimraf": "^6.0.1",
73
+ "shx": "^0.3.4",
74
+ "socket.io-client": "^4.8.1",
75
+ "source-map-support": "^0.5.21",
76
+ "supertest": "^7.0.0",
77
+ "ts-jest": "^29.1.0",
78
+ "ts-loader": "^9.4.3",
79
+ "ts-node": "^10.9.1",
80
+ "tsconfig-paths": "^4.2.0",
81
+ "typescript": "^5.1.3"
82
+ },
83
+ "jest": {
84
+ "moduleFileExtensions": [
85
+ "js",
86
+ "json",
87
+ "ts"
88
+ ],
89
+ "rootDir": "src",
90
+ "testRegex": ".*\\.spec\\.ts$",
91
+ "transform": {
92
+ "^.+\\.(t|j)s$": "ts-jest"
93
+ },
94
+ "collectCoverageFrom": [
95
+ "**/*.(t|j)s"
96
+ ],
97
+ "coverageDirectory": "../coverage",
98
+ "testEnvironment": "node"
99
+ }
100
+ }