-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.98 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.98 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
{
"name": "flex-table-react",
"version": "0.1.0",
"description": "A flexible, responsive, tabular data display component based on CSS Flexbox. This small set of components provides a simple interface that allows developers to generate flexible table-like data components manually, or via a custom data object to enable sortable data display.",
"main": "build/flex-table.js",
"files": [
"build/flex-table.js"
],
"scripts": {
"lint:js": "eslint .",
"lint:js-fix": "eslint . --fix",
"lint:styles": "stylelint .",
"start": "webpack --mode development --watch",
"build": "webpack -p --mode production",
"prepublish": "rm -rf ./build && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willdavidow/flex-table-react.git"
},
"keywords": [
"React",
"Component",
"FlexBox",
"Responsive",
"FlexTable"
],
"author": "Will Davidow <w.davidow@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/willdavidow/flex-table-react/issues"
},
"homepage": "https://github.com/willdavidow/flex-table-react#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "0.0.0",
"node-sass": "^4.10.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.8.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"classnames": "^2.2.5",
"react": "^16.7.0-alpha.2",
"prop-types": "^15.5.7-alpha.1"
}
}