-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.55 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
{
"name": "system-viewer",
"displayName": "System Viewer",
"description": "Introspect the ROS network.",
"publisher": "Open Robotics",
"version": "0.0.1",
"license": "MIT",
"main": "./dist/extension.js",
"scripts": {
"build": "fox build",
"prepare": "husky install",
"foxglove:prepublish": "fox build --mode development",
"local-install": "fox install",
"lint": "eslint src --ignore-path .gitignore --max-warnings 0",
"prettier": "prettier --ignore-path .gitignore \"**/*.(js|jsx|json|yml|yaml|css|ts|tsx|md|mdx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"package": "fox package",
"pretest": "fox pretest",
"validate": "npm-run-all check-format lint build"
},
"devDependencies": {
"@foxglove/eslint-plugin": "0.20.0",
"@foxglove/fox": "0.4.3",
"@foxglove/studio": "1.24.0",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.8.3"
},
"dependencies": {
"@types/parse-json": "^4.0.0"
}
}