forked from techniq/mui-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "mui-table",
"version": "1.1.2",
"description": "Material-UI table with windowing, row/column freezing, and more",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "https://github.com/techniq/mui-table",
"author": "Sean Lynch <techniq35@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@material-ui/core": "^1.0.0",
"react": ">=15"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react-virtualized": "^9.18.0"
},
"devDependencies": {
"@material-ui/core": "^1.0.0",
"@storybook/react": "^3.4.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"gh-pages": "^1.1.0",
"jest": "^22.4.3",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "NODE_ENV=production babel src -d dist",
"storybook": "start-storybook -p 9009 -c stories",
"build-docs": "cd stories && yarn install && cd .. && build-storybook -c stories -o docs",
"deploy-docs": "gh-pages -d docs",
"preversion": "yarn build",
"postpublish": "yarn build-docs && yarn deploy-docs"
}
}