forked from rapyuta-robotics/zethus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
121 lines (121 loc) · 3.26 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
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@robostack/zethus",
"version": "0.1.23",
"description": "Realtime robot data visualization in the browser",
"main": "build-lib/zethus.umd.js",
"homepage": "https://rapyuta-robotics.github.io/zethus",
"repository": {
"type": "git",
"url": "git+https://github.com/robostack/zethus.git"
},
"keywords": [
"ros",
"robotics",
"riz",
"javascript",
"threejs"
],
"author": "Rapyuta Robotics <opensource@rapyuta-robotics.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/robostack/zethus/issues"
},
"dependencies": {
"amphion": "npm:@robostack/amphion@^0.1.24",
"brace": "^0.11.1",
"classnames": "^2.2.6",
"d3": "^5.16.0",
"dagre-d3": "^0.6.4",
"is-valid-http-url": "^1.0.3",
"jsoneditor-react": "^2.0.0",
"lodash": "^4.17.13",
"mousetrap": "^1.6.5",
"prop-types": "^15.7.2",
"react-graceful-unmount": "^1.0.7",
"react-markdown": "^4.3.1",
"react-rnd": "^10.1.10",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-tagsinput": "^3.19.0",
"react-virtualized": "^9.21.2",
"roslib": "npm:@robostack/roslib@^1.1.0",
"shortid": "^2.2.14",
"stats-js": "^1.0.0",
"store": "^2.0.12",
"styled-components": "^4.3.2",
"three": "^0.117.0"
},
"scripts": {
"start": "webpack-dev-server --config webpack.app.dev.js --host 192.168.64.6",
"build": "webpack --config webpack.app.prod.js",
"build-lib": "webpack --config webpack.lib.prod.js",
"lint": "eslint src/**/*.{js,jsx} --fix",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prettier": "prettier src/**/* --write"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@types/d3": "^5.7.2",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-restricted-globals": "^0.2.0",
"file-loader": "^4.3.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prettier-sort-destructure": "0.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-prettier": "^1.1.2",
"url-loader": "^2.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{css,scss}": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": "^16.10.1",
"react-dom": "^16.10.1"
}
}