forked from Hypfer/Valetudo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.5 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
{
"name": "valetudo",
"version": "2021.12.1",
"description": "Self-contained control webinterface for vacuum robots",
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"author": "",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"build": "npm run build --workspace=frontend && npm run build --workspace=backend",
"lint_all": "npm run lint --workspace=frontend && npm run lint --workspace=backend",
"ts-check_all": "npm run ts-check --workspace=frontend && npm run ts-check --workspace=backend",
"build_docs": "node ./util/generate_robot_docs.js && node ./util/generate_mqtt_docs.js",
"upx": "node ./util/upx_compress_valetudo.js",
"build_openapi_schema": "node util/build_openapi_schema.mjs",
"build_release_manifest": "node util/build_release_manifest.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"@typescript-eslint/experimental-utils": "5.4.0",
"eslint": "7.32.0",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-jsdoc": "37.0.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-regexp": "1.5.1",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-sort-requires": "^2.1.0",
"swagger-jsdoc": "git+https://npm@github.com/Hypfer/swagger-jsdoc.git#7.0.0-rc.6-noyaml-monorepo-fix",
"swagger-parser": "^10.0.2",
"typescript": "4.5.2",
"upx": "git+https://npm@github.com/Hypfer/upx#v1.0.7"
}
}