forked from Lichtblick-Suite/lichtblick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 4.36 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
{
"name": "foxglove-studio",
"version": "1.87.0-dev",
"license": "MPL-2.0",
"private": true,
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/studio.git"
},
"author": {
"name": "Foxglove Technologies",
"email": "[email protected]"
},
"homepage": "https://foxglove.dev/",
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "tsc --build --clean packages/**/tsconfig.json && rimraf .webpack */.webpack dist storybook-screenshots storybook-static",
"build:packages": "tsc --build --verbose packages/**/tsconfig.json",
"web:build:dev": "webpack --mode development --progress --config web/webpack.config.ts",
"web:build:prod": "webpack --mode production --progress --config web/webpack.config.ts",
"web:serve": "webpack serve --mode development --progress --config web/webpack.config.ts",
"benchmark:serve": "webpack serve --mode development --progress --config benchmark/webpack.config.ts",
"benchmark:build:prod": "webpack --mode production --progress --config benchmark/webpack.config.ts",
"license-check": "ts-node ci/license-check.ts",
"lint": "TIMING=1 eslint --report-unused-disable-directives --fix .",
"lint:ci": "TIMING=1 eslint --report-unused-disable-directives --config .eslintrc.ci.yaml .",
"lint:unused-exports": "ts-node ./ci/lint-unused-exports.ts",
"lint:dependencies": "ts-node ./ci/lint-dependencies.ts .",
"test": "jest",
"test:debug": "cross-env NODE_OPTIONS='--inspect-brk' jest",
"test:watch": "jest --watch",
"test:web-integration": "jest --forceExit --projects web/integration-test",
"test:web-integration:local": "BASE_URL=\"http://localhost:8080/\" jest --forceExit --projects web/integration-test",
"release:bump-nightly-version": "node -r ts-node/register ./ci/bump-nightly-version.ts",
"storybook": "storybook dev --port 9009 --config-dir .storybook",
"storybook:build": "storybook build --config-dir .storybook --webpack-stats-json",
"version:all": "yarn workspaces foreach version"
},
"workspaces": {
"packages": [
"packages/*",
"packages/@types/*",
"web",
"benchmark"
]
},
"resolutions": {
"@types/node": "20.10.0",
"react-use": "patch:[email protected]#./patches/react-use.patch",
"react-dnd": "patch:react-dnd@npm:16.0.1#./patches/react-dnd.patch"
},
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/tool-cache": "2.0.1",
"@babel/core": "7.23.9",
"@babel/plugin-proposal-explicit-resource-management": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@foxglove/eslint-plugin": "1.0.0",
"@foxglove/eslint-plugin-studio": "workspace:*",
"@foxglove/tsconfig": "2.0.0",
"@octokit/rest": "20.0.2",
"@storybook/addon-actions": "7.6.15",
"@storybook/addon-essentials": "7.6.15",
"@storybook/addon-interactions": "7.6.15",
"@storybook/react": "7.6.15",
"@storybook/react-webpack5": "7.6.15",
"@types/babel__core": "^7.20.3",
"@types/babel__preset-env": "^7.9.6",
"@types/case-sensitive-paths-webpack-plugin": "2.1.9",
"@types/jest": "29.5.12",
"@types/license-checker": "^25.0.6",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"babel-plugin-transform-import-meta": "2.2.1",
"cross-env": "7.0.3",
"depcheck": "1.4.7",
"eslint": "8.50.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-webpack": "0.13.8",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-file-progress": "1.3.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.15",
"eslint-plugin-tss-unused-classes": "1.0.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"license-checker": "25.0.1",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"semver": "7.5.4",
"storybook": "7.6.15",
"ts-node": "10.9.2",
"ts-unused-exports": "10.0.1",
"tslib": "2.6.2",
"typescript": "5.3.3",
"webpack": "5.90.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-hot-middleware": "2.26.0"
}
}