-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
105 lines (105 loc) · 2.7 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
{
"name": "reactree",
"displayName": "ReacTree",
"description": "React hierarchy tree visualizer and navigation tool",
"version": "1.0.7",
"icon": "icon.png",
"publisher": "ReacTreeDev",
"preview": false,
"engines": {
"vscode": "^1.74.3"
},
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/ReacTree/tree/main"
},
"categories": [
"Other"
],
"keywords": [
"react",
"hierarchy tree",
"react components",
"parent-child",
"navigation",
"visualizer"
],
"license": "MIT",
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "reacTree.start",
"title": "ReacTree: Show Panel"
},
{
"command": "reacTree.startStatusBar",
"title": "ReacTree: Show StatusBar"
}
]
},
"extensionPack": [
"docsmsft.docs-markdown",
"docsmsft.docs-preview"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack --mode production --config webpack.config.ts",
"watch": "webpack --mode development --config webpack.config.ts --watch",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-react": "^7.18.6",
"@types/babel__core": "^7.20.0",
"@types/chai": "^4.3.4",
"@types/dagre": "^0.7.48",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.24",
"@types/mocha": "^10.0.1",
"@types/node": "^12.20.55",
"@types/object-path": "^0.11.0",
"@types/rimraf": "^2.0.3",
"@types/webpack": "^4.41.0",
"@vscode/test-electron": "^2.2.3",
"babel-loader": "^8.0.6",
"chai": "^4.3.7",
"copy-webpack-plugin": "^5.1.1",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.2",
"ts-node": "^8.5.4",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@coreui/icons": "^3.0.0",
"@coreui/icons-react": "^2.1.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.8",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/vscode": "^1.75.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"dagre": "^0.8.5",
"fs-extra": "^8.1.0",
"object-path": "^0.11.4",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.5.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1"
}
}