-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.08 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
{
"name": "hero-dashboard",
"version": "0.8.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tue-robotics/hero-dashboard.git"
},
"author": {
"name": "Matthijs van der Burgh",
"email": "[email protected]"
},
"description": "Dashboard for HERO robot",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "playwright test",
"lint": "vue-cli-service lint",
"preelectron:build": "npm run lint && npm run electron:generate-icons",
"electron:build": "vue-cli-service electron:build --publish=never",
"electron:serve": "vue-cli-service electron:serve localhost",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"version": "npm run electron:build",
"patch": "npm version patch -m 'v%s' && npm run postpublish",
"minor": "npm version minor -m 'v%s' && npm run postpublish",
"major": "npm version major -m 'v%s' && npm run postpublish",
"postpublish": "git push && git push --tags"
},
"main": "background.js",
"dependencies": {
"@electron/remote": "^2.1.0",
"auto-ros": "^1.1.0",
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.23.0",
"hero-vue": "^0.3.7",
"roslib": "^1.4.1",
"vue": "^2.7.10"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@matthijsburgh/vue-cli-plugin-electron-builder": "^3.0.0",
"@playwright/test": "^1.48.0",
"@vue/cli-plugin-babel": "~5.0.1",
"@vue/cli-plugin-eslint": "~5.0.1",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-standard": "^8.0.1",
"electron": "^33.2.0",
"electron-devtools-installer": "^3.2.0",
"electron-icon-builder": "^2.0.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vue": "^9.31.0",
"playwright-core": "^1.48.0",
"vue-template-compiler": "^2.7.10"
}
}