generated from habx/lib-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 3.18 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
{
"name": "@habx/ui-table",
"version": "8.4.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-ci": "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",
"test-ci": "jest"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/habx/ui-table.git"
},
"author": "HABX Front End team",
"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 && npm run test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"peerDependencies": {
"@habx/ui-core": "^6.21.0",
"lodash": ">=4.17.21",
"react": ">= 18.2.0",
"styled-components": ">= 5.3.6"
},
"dependencies": {
"exceljs": "^4.3.0",
"p-limit": "^3.1.0",
"papaparse": "^5.3.2",
"react-dropzone": "^14.2.3",
"react-table": "^7.8.0",
"react-window": "^1.8.8",
"react-window-infinite-loader": "^1.0.8"
},
"devDependencies": {
"@habx/config-ci-front": "^3.9.0",
"@habx/eslint-config-client": "^6.10.0",
"@habx/ui-core": "^6.21.0",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/storybook-deployer": "^2.8.16",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/faker": "^5.5.9",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@types/papaparse": "^5.3.7",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-table": "^7.7.14",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@types/styled-components": "^5.1.26",
"bili": "^5.0.5",
"eslint-plugin-mdx": "^2.0.5",
"faker": "^5.5.3",
"husky": "^4.3.8",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-junit": "^15.0.0",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"storybook-dark-mode": "^2.0.5",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"storybook-deployer": {
"commitMessage": "[SKIP CI] Deploy Storybook to GitHub Pages"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}