-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 3.23 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
71
72
73
74
75
76
77
{
"name": "powerpi",
"private": true,
"license": "GPL-3.0-only",
"author": "TWilkin",
"repository": {
"type": "git",
"url": "https://github.com/TWilkin/powerpi.git"
},
"workspaces": {
"packages": [
"common/node/common",
"common/node/common-api",
"common/node/common-test",
"services/api",
"services/config-server",
"services/energy-monitor",
"services/persistence",
"services/ui",
"services/voice-assistant"
]
},
"scripts": {
"build:common": "yarn workspace @powerpi/common build",
"build:common-api": "yarn workspace @powerpi/common-api build",
"build:common-test": "yarn workspace @powerpi/common-test build",
"build:api": "yarn workspace @powerpi/api build",
"build:config-server": "yarn workspace @powerpi/config-server build",
"build:energy-monitor": "yarn workspace @powerpi/energy-monitor build",
"build:lib": "yarn build:common; yarn build:common-api; yarn build:common-test",
"build:persistence": "yarn workspace @powerpi/persistence build",
"build:ui": "yarn workspace @powerpi/ui build",
"build:voice-assistant": "yarn workspace @powerpi/voice-assistant build",
"build:voice-assistant:alexa": "yarn workspace @powerpi/voice-assistant build:alexa",
"clean": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"lint": "eslint . --ext .ts --ext .tsx",
"prettier": "prettier --write .",
"start:api": "yarn workspace @powerpi/api start:dev",
"start:config-server": "yarn workspace @powerpi/config-server start:dev",
"start:energy-monitor": "yarn workspace @powerpi/energy-monitor start:dev",
"start:persistence": "yarn workspace @powerpi/persistence start:dev",
"start:ui": "yarn workspace @powerpi/ui start",
"start:voice-assistant": "yarn workspace @powerpi/voice-assistant start:debug",
"test:common": "yarn workspace @powerpi/common test",
"test:api": "yarn workspace @powerpi/api test",
"test:config-server": "yarn workspace @powerpi/config-server test",
"test:persistence": "yarn workspace @powerpi/persistence test",
"test:ui": "yarn workspace @powerpi/ui test",
"test:voice-assistant": "yarn workspace @powerpi/voice-assistant test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitest/eslint-plugin": "^1.1.10",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.4.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
},
"resolutions": {
"@types/mime": ">=3.0.0 <4.0.0",
"axios": "^1.6.0",
"express": "^4.21.2",
"class-transformer": "^0.5.0",
"cookie": "^0.7.0",
"got": "^13.0.0",
"lodash": "^4.17.21",
"optionator": "^0.9.3",
"semver": "^7.5.2",
"send": "^0.19.0",
"ws": "^8.17.1"
}
}