-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.15 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
68
69
70
{
"name": "home-automation-server",
"version": "0.1.0",
"description": "A simple home automation server to toggle Philips Hue lights",
"author": "Marvin de Bruin<[email protected]>",
"license": "Hippocratic-3.0",
"engines": {
"node": ">=0.16.16"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "NODE_ENV=development nest start --watch",
"start:debug": "NODE_ENV=development nest start --debug --watch",
"start:prod": "node dist/main",
"format": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"validate": "tsc --noEmit",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.config.js",
"prepare": "husky"
},
"dependencies": {
"@nestjs/common": "10.4.6",
"@nestjs/config": "3.3.0",
"@nestjs/core": "10.4.6",
"@nestjs/platform-express": "10.4.6",
"@nestjs/swagger": "8.0.0",
"hap-nodejs": "1.1.0",
"node-hue-api": "5.0.0-beta.16",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"rxjs": "7.8.1"
},
"devDependencies": {
"@nestjs/cli": "10.4.5",
"@nestjs/schematics": "10.2.3",
"@nestjs/testing": "10.4.6",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.8.1",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.12.0",
"@typescript-eslint/parser": "8.12.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"source-map-support": "0.5.21",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.3",
"wait-for-expect": "3.0.2"
},
"resolutions": {
"xml2js": "0.5.0",
"express": "4.19.2"
}
}