-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
160 lines (160 loc) · 5.14 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "slickgrid-react",
"version": "5.10.1",
"description": "Slickgrid components made available in React",
"keywords": [
"react",
"datagrid",
"datatable",
"plugin",
"slickgrid"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/ghiscoding/slickgrid-react",
"bugs": {
"url": "https://github.com/ghiscoding/slickgrid-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ghiscoding/slickgrid-react.git"
},
"license": "MIT",
"author": "Ghislain B.",
"contributors": [
{
"name": "Ghislain B."
},
{
"name": "Devin Garner"
},
{
"name": "Javier Soques"
},
{
"name": "Dustin Garner"
},
{
"name": "Joel Peña"
}
],
"scripts": {
"start": "vite",
"build:demo": "tsc && vite build",
"preview": "vite preview",
"delete:dist": "rimraf dist",
"lint": "eslint --cache .",
"lint:no-cache": "eslint .",
"lint:fix": "eslint --fix .",
"build:cjs": "tsc --project src/slickgrid-react/tsconfig.build.json --outDir dist/cjs --module commonjs --declaration false",
"postbuild:cjs": "copyfiles --up 2 src/slickgrid-react/**/*.html dist/cjs",
"build:esm": "tsc --project src/slickgrid-react/tsconfig.build.json --outDir dist/esm --module esnext --target es2018 --declaration false",
"postbuild:esm": "copyfiles --up 2 src/slickgrid-react/**/*.html dist/esm",
"build:types": "tsc --project src/slickgrid-react/tsconfig.build.json --emitDeclarationOnly --declarationMap --outDir dist/types",
"prebuild": "npm-run-all delete:dist lint",
"build": "npm-run-all build:cjs build:esm build:types",
"postbuild": "npm-run-all copy-i18n:dist copy-asset-lib",
"copy-asset-lib": "copyfiles --up 2 src/assets/lib/** dist",
"copy-i18n:dist": "copyfiles --up 3 src/assets/i18n/**/*.* dist/i18n",
"cypress:open": "cypress open --config-file test/cypress.config.ts",
"cypress:ci": "cypress run --config-file test/cypress.config.ts",
"preview:release": "release-it --dry-run",
"release": "release-it --only-version",
"serve:demo": "serve ./website -l 8080 --no-request-logging",
"pack": "npm pack",
"are-type-wrong": "attw --pack ."
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"files": [
"/dist",
"/src/slickgrid-react"
],
"dependencies": {
"@slickgrid-universal/common": "~5.10.1",
"@slickgrid-universal/custom-footer-component": "~5.10.1",
"@slickgrid-universal/empty-warning-component": "~5.10.1",
"@slickgrid-universal/event-pub-sub": "~5.9.0",
"@slickgrid-universal/pagination-component": "~5.10.1",
"@slickgrid-universal/row-detail-view-plugin": "~5.10.1",
"dequal": "^2.0.3",
"i18next": "^23.16.5",
"sortablejs": "^1.15.3"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@arethetypeswrong/cli": "^0.16.4",
"@faker-js/faker": "^9.2.0",
"@fnando/sparkline": "^0.3.10",
"@formkit/tempo": "^0.1.2",
"@popperjs/core": "^2.11.8",
"@release-it/conventional-changelog": "^9.0.2",
"@slickgrid-universal/composite-editor-component": "~5.10.1",
"@slickgrid-universal/custom-tooltip-plugin": "~5.10.1",
"@slickgrid-universal/excel-export": "~5.10.1",
"@slickgrid-universal/graphql": "~5.10.1",
"@slickgrid-universal/odata": "~5.10.1",
"@slickgrid-universal/rxjs-observable": "~5.10.1",
"@slickgrid-universal/text-export": "~5.10.1",
"@types/fnando__sparkline": "^0.3.7",
"@types/i18next-xhr-backend": "^1.4.2",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/sortablejs": "^1.15.8",
"@types/text-encoding-utf-8": "^1.0.5",
"@vitejs/plugin-react": "^4.3.3",
"bootstrap": "^5.3.3",
"concurrently": "^9.1.0",
"copyfiles": "^2.4.1",
"custom-event-polyfill": "^1.0.7",
"cypress": "^13.15.2",
"cypress-real-events": "^1.13.0",
"dompurify": "^3.2.0",
"eslint": "^9.14.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.13.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"fetch-jsonp": "^1.3.0",
"globals": "^15.12.0",
"i18next-http-backend": "^2.6.2",
"isomorphic-fetch": "^3.0.0",
"npm-run-all2": "^7.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-router-dom": "^7.0.1",
"regenerator-runtime": "^0.14.1",
"release-it": "^17.10.0",
"rimraf": "^5.0.10",
"rxjs": "^7.8.1",
"sass": "^1.80.6",
"serve": "^14.2.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.1"
},
"engines": {
"node": ">=18.19.0"
},
"resolutions": {
"caniuse-lite": "1.0.30001679"
}
}