-
Notifications
You must be signed in to change notification settings - Fork 289
/
package.json
125 lines (125 loc) · 3.61 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
{
"name": "fixed-data-table-2",
"version": "2.0.17",
"description": "A React table component designed to allow presenting thousands of rows of data.",
"main": "dist/cjs/fixed-data-table-2.js",
"module": "dist/es/fixed-data-table-2.js",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"lodash": "^4.17.4",
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.4",
"react-portal": "^4.2.1",
"redux": "^4.0.1",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.17.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@webpack-cli/serve": "^1.6.1",
"aphrodite": "2.4.0",
"autoprefixer": "^10.4.2",
"babel-eslint": "10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-rewire": "1.2.0",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"css-loader": "^5.2.7",
"eslint": "7",
"eslint-config-prettier": "6.10.0",
"except": "^0.1.3",
"faker": "^5.5.3",
"glob": "7.1.4",
"global": "^4.4.0",
"html-loader": "0.5.5",
"husky": "^4.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "3.10.3",
"less-loader": "5.0.0",
"lint-staged": "^10.0.8",
"marked": "4.0.10",
"mini-css-extract-plugin": "^0.8.0",
"null-loader": "3.0.0",
"postcss": "^8.4.12",
"postcss-custom-properties": "^12.1.4",
"prettier": "2",
"react": "17.0.1",
"react-docgen": "4.1.1",
"react-dom": "17.0.1",
"react-test-renderer": "17.0.1",
"react-tools": "0.13.3",
"react-tooltip": "3.11.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "1.0.0",
"terser-webpack-plugin": "4.2.3",
"webpack": "^5.94.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^4.7.4"
},
"scripts": {
"webpack": "webpack",
"site-dev-server": "./build_helpers/startSiteDevServer.sh",
"site-build": "./build_helpers/buildStaticSite.sh",
"build": "rimraf dist && rollup --config",
"build-docs": "./build_helpers/buildAPIDocs.sh",
"publish-site": "./build_helpers/publishStaticSite.sh",
"publish-package": "./build_helpers/publishPackage.sh",
"publish-beta": "./build_helpers/publishPackage.sh --beta",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/schrodinger/fixed-data-table-2.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/schrodinger/fixed-data-table-2/issues"
},
"homepage": "https://schrodinger.github.io/fixed-data-table-2",
"tags": [
"react",
"table"
],
"keywords": [
"react",
"react-component",
"table",
"data-table",
"fixed-table"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write {src,site,test,examples}/**/*.js"
]
}
}