forked from habx/ui-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.09 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.09 KB
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
{
"name": "@habx/ui-table",
"version": "4.13.0",
"description": "React Table components",
"sideEffects": false,
"main": "./dist/index.cjs.js",
"module": "./dist/esm/index.js",
"types": "./dist/typings/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "bili",
"build:watch": "npm run clean && tsc --watch",
"lint": "eslint \"src/**\"",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .storybook-static",
"storybook:deploy": "storybook-to-ghpages -s storybook:build --ci -t=GITHUB_TOKEN",
"test": "jest"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/habx/ui-table.git"
},
"author": "Flavien DELANGLE",
"license": "ISC",
"bugs": {
"url": "https://github.com/habx/ui-table/issues"
},
"homepage": "https://github.com/habx/ui-table#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"peerDependencies": {
"@habx/ui-core": "^5.18.0",
"lodash": ">=4.17.20",
"react": ">= 17.0.1",
"styled-components": ">= 5.2.1"
},
"dependencies": {
"@testing-library/react": "^11.2.5",
"@types/papaparse": "^5.2.5",
"exceljs": "^4.2.0",
"papaparse": "^5.3.0",
"react-dropzone": "^11.3.1",
"react-table": "^7.6.3",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.7"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.16",
"@habx/eslint-config-client": "^5.5.0",
"@habx/ui-core": "^5.18.0",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-centered": "^5.3.21",
"@storybook/addon-knobs": "^6.1.18",
"@storybook/addon-viewport": "^6.1.18",
"@storybook/react": "^6.1.18",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/react-hooks": "^5.0.3",
"@types/faker": "^5.1.6",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-table": "^7.0.28",
"@types/react-window": "^1.8.2",
"@types/react-window-infinite-loader": "^1.0.3",
"@types/styled-components": "^5.1.7",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.2.2",
"bili": "^5.0.5",
"faker": "^5.4.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^10.5.4",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"styled-components": "^5.2.1",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5"
},
"storybook-deployer": {
"commitMessage": "[SKIP CI] Deploy Storybook to GitHub Pages"
},
"publishConfig": "https://npm.pkg.github.com/"
}