forked from clubcapra/capra_web_ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.82 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
{
"name": "capra_web_ui",
"version": "2.0.3",
"author": {
"name": "Club Capra",
"email": "[email protected]",
"url": "http://www.clubcapra.com"
},
"description": "User Interface for ROS based robots",
"private": true,
"homepage": "./",
"main": "build/electron/main.js",
"scripts": {
"start": "concurrently -k -s first -n react,electron npm:start:react npm:start:electron",
"start:react": "react-app-rewired start",
"start:electron": "npm run build:electron:ts && wait-on http://localhost:3000 && electron .",
"build": "concurrently npm:build:react npm:build:electron:ts",
"build:react": "react-app-rewired build",
"build:electron": "npm run build && electron-builder",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"lint": "eslint --ext js,ts,tsx src",
"typecheck": "tsc --noEmit",
"build:electron:ts": "cd ./src/electron/ && tsc",
"check": "concurrently npm:lint npm:typecheck"
},
"build": {
"appId": "com.clubcapra.capra_web_ui",
"files": [
"build/**/*"
],
"linux": {
"target": [
"deb"
]
},
"directories": {
"buildResources": "./src/assets/build"
},
"artifactName": "capra_web_ui_setup.${ext}",
"extends": null
},
"dependencies": {
"@reduxjs/toolkit": "^1.2.3",
"@types/roslib": "1.0.0",
"chart.js": "^2.9.3",
"chartjs-plugin-streaming": "^1.8.0",
"date-fns": "^2.9.0",
"lodash": "^4.17.15",
"polished": "^3.4.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-icons": "^3.9.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-toastify": "^5.5.0",
"redux": "^4.0.5",
"roslib": "^1.0.1",
"shortid": "^2.2.15",
"styled-components": "^5.0.1",
"typescript": "3.7.5"
},
"devDependencies": {
"@types/chart.js": "^2.9.12",
"@types/jest": "25.1.2",
"@types/lodash": "^4.14.149",
"@types/node": "12.12.25",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/shortid": "0.0.29",
"@types/styled-components": "^4.4.2",
"concurrently": "^5.1.0",
"electron": "^8.0.0",
"electron-builder": "^22.3.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.1",
"prettier": "^1.19.1",
"react-app-rewired": "^2.1.5",
"react-scripts": "3.3.1",
"wait-on": "^4.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}