-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (107 loc) · 4.03 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (107 loc) · 4.03 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
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
106
107
108
{
"name": "@stinger-soft/aggrid-bundle",
"version": "4.0.0-beta.1",
"description": "ag-Grid Enterprise Features",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"ts",
"ts/scss"
],
"sideEffects": ["*.scss"],
"repository": {
"type": "git",
"url": "https://github.com/Stinger-Soft/AggridBundle.git"
},
"keywords": [
"grid",
"data",
"table",
"ag-grid",
"aggrid"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Stinger-Soft/AggridBundle/issues"
},
"homepage": "https://github.com/Stinger-Soft/AggridBundle/",
"dependencies": {
},
"peerDependencies": {
"@ag-grid-community/core": ">=32.0.0",
"@ag-grid-community/styles": ">=32.0.0",
"@ag-grid-community/client-side-row-model": ">=32.0.0",
"@ag-grid-community/react": ">=32.0.0",
"@ag-grid-enterprise/core": ">=32.0.0",
"@ag-grid-enterprise/column-tool-panel": ">=32.0.0",
"@ag-grid-enterprise/filter-tool-panel": ">=32.0.0",
"@ag-grid-enterprise/menu": ">=32.0.0",
"@ag-grid-enterprise/row-grouping": ">=32.0.0",
"@ag-grid-enterprise/server-side-row-model": ">=32.0.0",
"@ag-grid-enterprise/set-filter": ">=32.0.0",
"@ag-grid-enterprise/side-bar": ">=32.0.0",
"@ag-grid-enterprise/status-bar": ">=32.0.0",
"axios": "^1",
"jquery": ">=3",
"moment": "^2.24",
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"react-router-dom": ">=6.0.0"
},
"peerDependenciesMeta": {
"@ag-grid-enterprise/core": { "optional": true },
"@ag-grid-enterprise/column-tool-panel": { "optional": true },
"@ag-grid-enterprise/filter-tool-panel": { "optional": true },
"@ag-grid-enterprise/menu": { "optional": true },
"@ag-grid-enterprise/row-grouping": { "optional": true },
"@ag-grid-enterprise/server-side-row-model": { "optional": true },
"@ag-grid-enterprise/set-filter": { "optional": true },
"@ag-grid-enterprise/side-bar": { "optional": true },
"@ag-grid-enterprise/status-bar": { "optional": true },
"jquery": { "optional": true },
"moment": { "optional": true },
"react-router-dom": { "optional": true }
},
"scripts": {
"build": "tsc --project tsconfig.build.json && npm run copy-assets",
"copy-assets": "find ts -name '*.scss' | while read f; do cp --parents \"$f\" dist/ ; done && cd dist && cp -r ts/* . && rm -rf ts",
"prepublishOnly": "npm run build",
"lint": "eslint ts/",
"lint:fix": "eslint ts/ --fix"
},
"devDependencies": {
"@ag-grid-community/core": ">=32.0.0",
"@ag-grid-community/styles": ">=32.0.0",
"@ag-grid-community/client-side-row-model": ">=32.0.0",
"@ag-grid-community/react": ">=32.0.0",
"@ag-grid-enterprise/core": ">=32.0.0",
"@ag-grid-enterprise/column-tool-panel": ">=32.0.0",
"@ag-grid-enterprise/filter-tool-panel": ">=32.0.0",
"@ag-grid-enterprise/menu": ">=32.0.0",
"@ag-grid-enterprise/row-grouping": ">=32.0.0",
"@ag-grid-enterprise/server-side-row-model": ">=32.0.0",
"@ag-grid-enterprise/set-filter": ">=32.0.0",
"@ag-grid-enterprise/side-bar": ">=32.0.0",
"@ag-grid-enterprise/status-bar": ">=32.0.0",
"axios": "^1.0.0",
"@types/bazinga-translator": "^3",
"@types/jquery": "^3",
"eslint": "^9",
"eslint-config-love": "^150",
"eslint-formatter-checkstyle": "^9.0.1",
"eslint-plugin-import": "^2.32",
"eslint-plugin-n": "^17",
"eslint-plugin-promise": "^7",
"eslint-plugin-react": "^7",
"jquery": "^3",
"moment": "^2.24",
"prettier": "^3",
"@types/react": ">=19.0.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"react-router-dom": ">=7.0.0",
"typescript": "^5.7.0"
}
}