-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 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
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
{
"name": "traceviewer-react-components",
"version": "0.1.0",
"description": "Trace Compass react components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-cdt-cloud/theia-trace-extension"
},
"bugs": {
"url": "https://github.com/eclipse-cdt-cloud/theia-trace-extension/issues"
},
"homepage": "https://github.com/eclipse-cdt-cloud/theia-trace-extension",
"files": [
"lib",
"src",
"style"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17 <1.3.0",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@mui/material": "^5.10.14",
"@vscode/codicons": "^0.0.29",
"ag-grid-community": "^28.2.0",
"ag-grid-react": "^28.2.0",
"chart.js": "^2.8.0",
"d3": "^7.1.1",
"lodash": "^4.17.15",
"react-chartjs-2": "^2.7.6",
"react-contexify": "^5.0.0",
"react-grid-layout": "1.2.0",
"react-modal": "^3.8.1",
"react-tooltip": "4.2.14",
"react-virtualized": "^9.21.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.86.0",
"timeline-chart": "next",
"traceviewer-base": "0.1.0",
"tsp-typescript-client": "next"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/chart.js": "^2.7.52",
"@types/d3": "^7.1.0",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.142",
"@types/react-grid-layout": "^1.1.1",
"@types/react-modal": "^3.8.2",
"@types/react-test-renderer": "^16.9.2",
"@types/react-virtualized": "^9.21.1",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.20.0",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.3",
"react-test-renderer": "^18.2.0",
"rimraf": "latest",
"ts-jest": "^28.0.8",
"typescript": "latest"
},
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib *.tsbuildinfo",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --config jest.config.json",
"watch": "tsc -b -w",
"format:write": "prettier --write ./src",
"format:check": "prettier --check ./src"
}
}