-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "climb-onyx-gui",
"version": "0.13.0",
"type": "module",
"main": "dist/climb-onyx-gui.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ag-grid-community/client-side-row-model": "^32.2.0",
"@ag-grid-community/core": "^32.2.0",
"@ag-grid-community/csv-export": "^32.2.0",
"@ag-grid-community/react": "^32.2.0",
"@ag-grid-community/styles": "^32.2.0",
"@tanstack/react-query": "^4.36.1",
"export-to-csv": "^1.3.0",
"plotly.js-basic-dist": "^2.33.0",
"react-bootstrap": "^2.10.2",
"react-icons": "^5.3.0",
"react-plotly.js": "^2.6.0",
"react-select": "^5.8.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/plotly.js-basic-dist": "^1.54.4",
"@types/react": "^17.0.83",
"@types/react-dom": "^17.0.25",
"@types/react-plotly.js": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1"
}
}