-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 KB
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
{
"name": "@rushstack/rush-vscode-command-webview",
"version": "0.0.0",
"private": true,
"description": "Part of the Rush Stack VSCode extension, provides a UI for invoking Rush commands",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "vscode-extensions/rush-vscode-command-webview"
},
"license": "MIT",
"main": "./lib-esm/index.js",
"types": "./lib-dts/index.d.ts",
"scripts": {
"_phase:build": "heft build --clean",
"_phase:test": "",
"build": "heft build --clean",
"build:watch": "heft build-watch",
"start": "heft start"
},
"dependencies": {
"@fluentui/react-components": "~9.72.9",
"@fluentui/react": "~8.125.3",
"@reduxjs/toolkit": "~2.11.2",
"react-dom": "~19.2.3",
"react-hook-form": "~7.69.0",
"react-redux": "~9.2.0",
"react": "~19.2.3",
"redux": "~5.0.1",
"scheduler": "0.19.0",
"tslib": "~2.8.1"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-redux": "~7.1.22",
"@types/vscode": "1.103.0",
"eslint": "~9.37.0",
"html-webpack-plugin": "~5.5.0",
"local-web-rig": "workspace:*",
"webpack": "~5.105.2",
"webpack-bundle-analyzer": "~4.5.0"
},
"sideEffects": false
}