-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.55 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
{
"name": "react-mui-table",
"version": "0.0.30",
"description": "A react component that takes data & style parameters, and renders a Material UI table.",
"main": "dist/MaterialTable.js",
"scripts": {
"test": "npm run lint && flow && npm run jest",
"jest": "jest --verbose --no-cache --bail",
"start": "webpack-dev-server --progress --colors --hot --content-base build --config ./webpack.config.js",
"prepublish": "npm run build",
"build": "rm -r dist | babel src -d dist",
"build:watch": "babel src -d dist -w",
"lint": "eslint ./src",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "https://github.com/conciergeauctions/react-mui-table.git"
},
"keywords": [
"react",
"material",
"material-ui",
"table"
],
"contributors": [
"Krista Goralczyk <[email protected]>",
"Nathan Schwartz <[email protected]>",
"Brad Decker <[email protected]>"
],
"license": "MIT",
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup.js",
"testMatch": [
"**/__tests__/**/*.spec.js"
]
},
"dependencies": {
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"inline-style-prefixer": "^2.0.5",
"lodash.isequal": "^4.4.0",
"react": "^15.3.0",
"reselect": "^2.5.4",
"respondable": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.9",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"classnames": "^2.2.5",
"css-loader": "^0.26.1",
"enzyme": "^2.6.0",
"eslint": "^3.12.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-concierge-auctions-react": "^0.0.4",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.2",
"file-loader": "^0.9.0",
"flow-bin": "^0.39.0",
"html-webpack-plugin": "^2.24.1",
"jest": "^19.0.2",
"material-ui": "^0.16.6",
"moment": "^2.17.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.3.0",
"react-tap-event-plugin": "2.0.0",
"selectn": "^1.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}