-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "mui-virtualized-table",
"version": "3.0.0-6",
"description": "Material-UI table with windowing, row/column freezing, and more",
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"repository": "https://github.com/techniq/mui-virtualized-table",
"author": "Sean Lynch <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@material-ui/core": "^4.0.1",
"react": "^16.8"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react-draggable": "^4.2.0",
"react-virtualized": "^9.21.2"
},
"devDependencies": {
"@material-ui/core": "^4.0.1",
"@reactions/component": "^2.0.2",
"@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.8.0",
"react-dom": "^16.8.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"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true
}
}