-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
110 lines (110 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "capra_web_ui",
"version": "2.7.3",
"author": {
"name": "Club Capra",
"email": "admin@clubcapra.com",
"url": "http://www.clubcapra.com"
},
"description": "User Interface for ROS based robots",
"private": true,
"scripts": {
"start": "electron-snowpack dev",
"build": "npm run build:snowpack && npm run build:electron",
"build:snowpack": "electron-snowpack build",
"build:electron": "electron-builder --publish never",
"test": "jest",
"lint": "eslint --ext js,ts,tsx src",
"fix": "eslint --fix --ext js,ts,tsx src",
"typecheck": "tsc --noEmit",
"clean": "electron-snowpack clean",
"postinstall": "patch-package",
"depcheck": "depcheck --ignores=\"ts-node,ts-jest,@jest/types,@types/jest,concurrently\"",
"dependencies_check": "npm run depcheck",
"ci": "concurrently --kill-others-on-fail npm:lint npm:typecheck npm:test",
"local_ci": "concurrently npm:ci npm:dependencies_check"
},
"build": {
"appId": "com.clubcapra.capra_web_ui",
"win": {
"requestedExecutionLevel": "requireAdministrator",
"target": [
"msi"
]
},
"linux": {
"target": [
"deb"
]
},
"directories": {
"buildResources": "buildResources",
"output": "dist"
},
"artifactName": "capra_web_ui_setup.${ext}",
"extends": "electron-snowpack/config/electron-builder.js",
"extraFiles": [
"script/**",
"./public/assets/images/icon/*"
]
},
"dependencies": {
"@cycjimmy/jsmpeg-player": "^6.0.5",
"@reduxjs/toolkit": "^1.8.0",
"@xstate/react": "^1.6.3",
"chalk": "^5.0.1",
"chart.js": "^3.7.1",
"chartjs-adapter-date-fns": "^2.0.0",
"date-fns": "^2.28.0",
"electron-log": "^4.4.6",
"execa": "^6.1.0",
"lodash": "^4.17.21",
"nanoid": "^3.3.1",
"node-rtsp-stream": "^0.0.9",
"polished": "^4.1.4",
"qr-scanner": "^1.4.1",
"react": "^17.0.2",
"react-battery-gauge": "^1.0.5",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"react-spinners": "^0.11.0",
"react-toastify": "^8.2.0",
"reactjs-popup": "^2.0.5",
"ros3d": "^1.0.1",
"roslib": "^1.2.0",
"styled-components": "^5.3.3",
"xstate": "^4.30.6"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.180",
"@types/react": "^17.0.42",
"@types/react-dom": "^17.0.14",
"@types/react-redux": "^7.1.23",
"@types/react-router-dom": "^5.3.3",
"@types/roslib": "^1.9.0",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"concurrently": "^7.0.0",
"depcheck": "^1.4.3",
"electron": "^22.0.0",
"electron-builder": "^24.0.0",
"electron-devtools-installer": "^3.2.0",
"electron-snowpack": "^0.12.2",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"patch-package": "^6.4.7",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}