This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
74 lines (74 loc) · 2.45 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
{
"name": "ag-grid-react-example",
"version": "31.1.0",
"description": "React application using AG Grid.",
"private": true,
"keywords": [
"react",
"grid",
"data",
"table"
],
"author": "Niall Crosby <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/ag-grid-react-example.git"
},
"bugs": {
"url": "https://github.com/ag-grid/ag-grid-react-example/issues"
},
"homepage": "https://www.ag-grid.com/",
"scripts": {
"start": "npm run dev -- --port 8080",
"dev": "vite",
"buildx": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test:e2e": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ag-grid-community/client-side-row-model": "~31.1.0",
"@ag-grid-community/core": "~31.1.0",
"@ag-grid-community/react": "~31.1.0",
"@ag-grid-community/styles": "~31.1.0",
"@ag-grid-enterprise/charts": "~31.1.0",
"@ag-grid-enterprise/clipboard": "~31.1.0",
"@ag-grid-enterprise/column-tool-panel": "~31.1.0",
"@ag-grid-enterprise/core": "~31.1.0",
"@ag-grid-enterprise/excel-export": "~31.1.0",
"@ag-grid-enterprise/filter-tool-panel": "~31.1.0",
"@ag-grid-enterprise/master-detail": "~31.1.0",
"@ag-grid-enterprise/menu": "~31.1.0",
"@ag-grid-enterprise/multi-filter": "~31.1.0",
"@ag-grid-enterprise/range-selection": "~31.1.0",
"@ag-grid-enterprise/rich-select": "~31.1.0",
"@ag-grid-enterprise/row-grouping": "~31.1.0",
"@ag-grid-enterprise/server-side-row-model": "~31.1.0",
"@ag-grid-enterprise/set-filter": "~31.1.0",
"@ag-grid-enterprise/side-bar": "~31.1.0",
"@ag-grid-enterprise/sparklines": "~31.1.0",
"@ag-grid-enterprise/status-bar": "~31.1.0",
"@ag-grid-enterprise/viewport-row-model": "~31.1.0",
"bootstrap": "4.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/ui": "^1.2.2",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^24.0.0",
"vite": "^4.4.5",
"vitest": "^1.2.2"
}
}