forked from ghiscoding/slickgrid-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
179 lines (179 loc) · 5.88 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "slickgrid-react",
"version": "5.7.0",
"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",
"node": "./dist/cjs/index.js",
"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": {
"build:demo": "webpack --env production",
"dev": "webpack serve --env development",
"delete:dist": "rimraf dist",
"lint": "eslint --cache .",
"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",
"test:ci": "npx jest --runInBand --coverage=true --ci --config ./test/jest.config.js",
"test:jest": "npx jest --watch --detectOpenHandles --config test/jest.config.js",
"test:jest:coverage": "npx jest --detectOpenHandles --runInBand --coverage --config test/jest.config.js",
"preview:release": "release-it --dry-run",
"release": "release-it --only-version",
"serve:demo": "serve ./website -l 8080 --no-request-logging",
"pack": "npm pack"
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"files": [
"/dist",
"/src/slickgrid-react"
],
"dependencies": {
"@slickgrid-universal/common": "~5.6.1",
"@slickgrid-universal/custom-footer-component": "~5.6.1",
"@slickgrid-universal/empty-warning-component": "~5.6.1",
"@slickgrid-universal/event-pub-sub": "~5.5.2",
"@slickgrid-universal/pagination-component": "~5.6.1",
"dequal": "^2.0.3",
"i18next": "^23.14.0",
"sortablejs": "^1.15.2"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@faker-js/faker": "^9.0.0",
"@fnando/sparkline": "^0.3.10",
"@formkit/tempo": "^0.1.2",
"@popperjs/core": "^2.11.8",
"@release-it/conventional-changelog": "^8.0.1",
"@slickgrid-universal/composite-editor-component": "~5.6.1",
"@slickgrid-universal/custom-tooltip-plugin": "~5.6.1",
"@slickgrid-universal/excel-export": "~5.6.1",
"@slickgrid-universal/graphql": "~5.6.1",
"@slickgrid-universal/odata": "~5.6.1",
"@slickgrid-universal/rxjs-observable": "~5.6.1",
"@slickgrid-universal/text-export": "~5.6.1",
"@types/dompurify": "^3.0.5",
"@types/fnando__sparkline": "^0.3.7",
"@types/i18next-xhr-backend": "^1.4.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/sortablejs": "^1.15.8",
"@types/text-encoding-utf-8": "^1.0.5",
"@types/webpack": "^5.28.5",
"@webpack-cli/serve": "^2.0.5",
"bootstrap": "^5.3.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"copyfiles": "^2.4.1",
"css-loader": "^7.1.2",
"custom-event-polyfill": "^1.0.7",
"cypress": "^13.14.1",
"cypress-real-events": "^1.13.0",
"dompurify": "^3.1.6",
"esbuild-loader": "^4.2.2",
"eslint": "^9.9.1",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"fetch-jsonp": "^1.3.0",
"globals": "^15.9.0",
"html-loader": "5.1.0",
"html-webpack-plugin": "5.6.0",
"i18next-http-backend": "^2.6.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^2.9.1",
"npm-run-all2": "^6.2.2",
"promise-polyfill": "^8.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-router-dom": "^6.26.1",
"regenerator-runtime": "^0.14.1",
"release-it": "^17.6.0",
"rimraf": "^5.0.10",
"rxjs": "^7.8.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"serve": "^14.2.3",
"style-loader": "4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"engines": {
"node": ">=16.15.0",
"npm": ">=8.5.0"
},
"resolutions": {
"caniuse-lite": "1.0.30001655"
}
}