This repository has been archived by the owner on Jun 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.5 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
{
"name": "@tecsinapse/table",
"description": "TecSinapse Table",
"homepage": "https://github.com/tecsinapse/table#readme",
"version": "2.1.3",
"main": "dist/index.cjs.js",
"module": "build/index.js",
"author": {
"name": "TecSinapse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tecsinapse/table.git"
},
"bugs": {
"url": "https://github.com/tecsinapse/table/issues"
},
"keywords": [
"material-ui",
"react",
"table",
"tecsinapse",
"ui-kit"
],
"dependencies": {
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"@material-ui/styles": "^4.2.1",
"@mdi/js": "^5.3.45",
"@mdi/react": "^1.4.0",
"@tecsinapse/es-utils": "^6.0.10",
"@tecsinapse/ui-kit": "^4.3.3",
"clsx": "^1.0.4",
"prop-types": "^15.6.2",
"react-virtualized": "^9.21.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-docs": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/theming": "^5.3.19",
"@tecsinapse/eslint-config-tecsinapse-js": "^2.1.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"babel-core": "^7.0.0-beta.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.5",
"babel-plugin-inline-react-svg": "^1.0.1",
"core-js": "2.5.7",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-mdx": "^1.7.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-hooks": "^2.3.0",
"git-dirty": "^1.0.2",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.3",
"markdown-to-jsx": "^6.10.3",
"npm-check-updates": "^3.1.23",
"prettier": "^2.0.5",
"prettier-plugin-packagejson": "^2.0.1",
"promise-polyfill": "^8.1.3",
"react-popper": "^1.3.4",
"react-textarea-autosize": "^7.1.0",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.3",
"rollup": "^0.68.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"source-map-explorer": "^2.0.0"
},
"files": [
"build",
"dist"
],
"scripts": {
"analyze": "npx source-map-explorer 'dist/*.js'",
"build": "rimraf -rf build/ && babel src/ -d build/ && rollup -c",
"build-all": "yarn build && yarn storybook:build",
"build-publish": "yarn build-all && npm publish",
"dev": "rollup -c -w",
"prestart": "yarn install",
"start": "yarn install && yarn storybook",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs/",
"test": "NODE_ENV=test jest"
},
"license": "MIT",
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --max-warnings=0 --fix --no-ignore",
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"sideEffects": false
}