-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 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
{
"author": "[email protected]",
"dependencies": {
"@dmx-cloud/dmx": "^0.70.0",
"@nestjs/cli": "^10.4.9",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"@nestjs/event-emitter": "^2.1.1",
"@nestjs/mongoose": "^10.1.0",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/platform-socket.io": "^10.4.15",
"@nestjs/websockets": "^10.4.15",
"class-validator": "^0.14.1",
"mongoose": "^8.9.3",
"rxjs": "^7.8.1",
"serialport": "^13.0.0"
},
"devDependencies": {
"@dmx-cloud/dmx-types": "^0.30.0",
"@eslint/js": "^9.17.0",
"@nestjs/devtools-integration": "^0.1.6",
"@nestjs/swagger": "^8.1.0",
"@nestjs/testing": "^10.4.15",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"imports": {
"#*": "./src/*.ts",
"#test/*": "./test/*.ts"
},
"license": "UNLICENSED",
"name": "@dmx-cloud/dmx-backend",
"private": true,
"scripts": {
"build": "nest build",
"coverage": "npx jest --coverage",
"dev": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" nest start",
"dev:clean": "git clean -xfd -e node_modules -e *.iml",
"dev:format": "npm run lint -- --fix",
"dev:update": "npm update --save",
"dev:watch": "npm run dev -- --watch",
"lint": "npx eslint .",
"prod": "node start",
"test": "nest start",
"unit": "npx jest",
"unit:e2e": "npx jest --config ./test/jest-e2e.json",
"unit:watch": "npx jest --watch"
},
"type": "module",
"version": "0.0.1"
}