forked from schrodinger/fixed-data-table-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.62 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
{
"name": "fixed-data-table-2",
"version": "1.2.10",
"description": "A React table component designed to allow presenting thousands of rows of data.",
"main": "main.js",
"peerDependencies": {
"react": ">=15.3.0",
"react-dom": ">=15.3.0"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.4",
"redux": "^4.0.1",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@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/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/chai": "^4.2.10",
"@types/mocha": "^7.0.2",
"@webpack-cli/serve": "^1.6.1",
"aphrodite": "2.4.0",
"autoprefixer": "^10.4.2",
"babel-eslint": "10.1.0",
"babel-loader": "^8.0.0",
"babel-plugin-rewire": "1.2.0",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"bundle-loader": "0.5.6",
"chai": "4.2.0",
"css-loader": "^5.2.7",
"eslint": "7",
"eslint-config-prettier": "6.10.0",
"except": "^0.1.3",
"faker": "^2.1.2",
"file-loader": "4.2.0",
"glob": "7.1.4",
"html-loader": "0.5.5",
"husky": "^4.2.3",
"jsdom": "9.12.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",
"mocha": "^6.1.4",
"mocha-loader": "5.1.5",
"mocha-webpack": "2.0.0-beta.0",
"null-loader": "3.0.0",
"postcss": "8.2.13",
"postcss-custom-properties": "^12.1.4",
"prettier": "2",
"react": "16.13.1",
"react-dimensions": "1.3.1",
"react-docgen": "4.1.1",
"react-dom": "16.13.1",
"react-test-renderer": "^16.13.1",
"react-tools": "0.13.3",
"react-tooltip": "3.11.1",
"rimraf": "^3.0.2",
"sinon": "9.0.2",
"style-loader": "1.0.0",
"terser-webpack-plugin": "4.2.3",
"url-loader": "2.1.0",
"webpack": "^4.39.3",
"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-dist": "./build_helpers/buildDist.sh",
"build-npm": "./build_helpers/buildNPMInternals.sh",
"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": "mocha-webpack --webpack-config webpack.config-test.js \"test/**/*-test.js\" --require build_helpers/test-globals.js",
"test:watch": "mocha-webpack --webpack-config webpack.config-test.js --watch \"test/**/*-test.js\" --require build_helpers/test-globals.js",
"test:server": "webpack-dev-server --config webpack.config-test.js --hot"
},
"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"
]
}
}