-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.15 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.15 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@neolution-ch/react-data-table",
"version": "6.0.0",
"description": "A small and clean data-table with a lot of integrated functions",
"homepage": "https://neolution-ch.github.io/react-data-table",
"repository": {
"type": "git",
"url": "git+https://github.com/neolution-ch/react-data-table"
},
"license": "MIT",
"author": "Neolution",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"jsnext:main": "dist/index.modern.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && yarn copy-definitionfile",
"build-storybook": "build-storybook",
"lint": "eslint --cache",
"prepack": "yarn build",
"prepare-pr": "yarn prettier . --write && yarn lint && yarn build && yarn test\"",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"copy-definitionfile": "shx cp -r src/react-table.d.ts dist/react-table.d.ts",
"start": "yarn copy-definitionfile && rollup -c -w",
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
"storybook": "start-storybook -p 6006",
"test": "cross-env DEBUG_PRINT_LIMIT=100 jest",
"tsc": "tsc"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@neolution-ch/javascript-utils": "^2.2.0",
"@neolution-ch/react-pattern-ui": "^6.0.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.18",
"react-loading-skeleton": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@neolution-ch/eslint-config-neolution": "^2.3.0",
"@release-it/keep-a-changelog": "^7.0.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^10.2.8",
"@storybook/react": "^10.2.8",
"@storybook/testing-library": "^0.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^18.16.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.37.0",
"eslint-plugin-storybook": "^0.10.0",
"gh-pages": "^6.3.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@neolution-ch/reactstrap": "^10.0.0",
"release-it": "^19.2.4",
"rollup": "^4.57.1",
"rollup-plugin-import-css": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"shx": "^0.4.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"webpack": "^5.105.2",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1 || ^7.2.0",
"@fortawesome/free-solid-svg-icons": "^6.1.1 || ^7.2.0",
"@fortawesome/react-fontawesome": "^0.1.18 || ^0.2.0 || ^3.2.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"@neolution-ch/reactstrap": "^10.0.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}