This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
forked from gunn4r/material-ui-advanced-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 4.08 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "material-ui-advanced-table",
"version": "0.1.0",
"description": "Datatable for React based on https://material-ui.com/api/table/ with additional features",
"homepage": "https://github.com/gunn4r/material-ui-advanced-table#readme",
"main": "dist/index.js",
"umd:main": "dist/mylib.umd.production.js",
"module": "dist/mylib.esm.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tsdx test --env=jsdom",
"test:watch": "npm run test -- --watchAll",
"start": "cross-env NODE_ENV=development tsdx watch",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production tsdx build --format=umd,esm,cjs",
"prepublishOnly": "npm run build",
"size": "size-limit",
"storybook": "start-storybook -p 6006",
"build-storybook": "rimraf ./.storybook-static && build-storybook -c .storybook -o .storybook-static",
"deploy-storybook": "npm run build-storybook && storybook-to-ghpages --e=./.storybook-static"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@material-ui/core": "^4.1.1",
"@material-ui/pickers": "^3.1.1",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@storybook/storybook-deployer": "^2.8.1",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.21",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"confusing-browser-globals": "^1.0.7",
"cross-env": "^5.2.0",
"eslint": "5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"material-icons": "^0.3.1",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"raw-loader": "^3.0.0",
"react": "^16.8.6",
"react-beautiful-dnd": "^11.0.4",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"size-limit": "^1.3.7",
"tsdx": "0.7.2",
"tslib": "^1.10.0",
"typeface-roboto": "0.0.54",
"typescript": "3.5.2",
"webpack": "^4.35.0"
},
"dependencies": {
"@date-io/date-fns": "^1.3.7",
"classnames": "^2.2.6",
"date-fns": "^2.0.0-alpha.27",
"debounce": "^1.2.0",
"filefy": "0.1.9",
"react-double-scrollbar": "0.0.15"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"@material-ui/core": "^4.0.0",
"@material-ui/pickers": "^3.0.0",
"prop-types": "^15.7.2",
"react-beautiful-dnd": "^11.0.4"
},
"lint-staged": {
"operator/**/*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx --fix --rule 'react-hooks/exhaustive-deps: off'",
"git add"
],
"ignore": [
"**/dist/**",
"**/.rts*/**",
"**/example/**",
"**/node_modules/**"
]
},
"jest": {
"globals": {
"__DEV__": "boolean"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"setupFilesAfterEnv": [
"react-testing-library/cleanup-after-each.js",
"<rootDir>/test/setupTests.ts"
]
},
"size-limit": [
{
"path": "./dist/index.js",
"limit": "30 kB"
},
{
"path": "./dist/material-ui-advanced-table.esm.js",
"limit": "30 kB"
},
{
"path": "./dist/material-ui-advanced-table.umd.production.min.js",
"limit": "30 kB"
}
],
"eslintIgnore": [
"**/node_modules",
"**/coverage",
"*.d.ts",
"**/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gunn4r/material-ui-advanced-table.git"
},
"keywords": [
"react",
"material-ui",
"material",
"datatable",
"table"
],
"author": "Gunnar Gabrielson",
"contributors": [
"Mehmet Baran"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gunn4r/material-ui-advanced-table/issues"
}
}