-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.44 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
{
"private": false,
"name": "react-customize-data-table",
"version": "1.0.8",
"description": "A React table component designed to display large data with high performance.",
"keywords": [
"react",
"react-table",
"table",
"data-table",
"virtual table",
"virtualized",
"scrolling",
"list"
],
"files": [
"lib",
"es"
],
"main": "./lib/index",
"module": "./es/index",
"types": "./lib/index.d.ts",
"homepage": "https://haianweifeng.github.io/react-customize-data-table",
"repository": {
"type": "git",
"url": "[email protected]:haianweifeng/react-customize-data-table.git"
},
"bugs": {
"url": "https://github.com/haianweifeng/react-customize-data-table/issues"
},
"license": "MIT",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d dist",
"compile": "father build",
"deploy": "npm run docs:build && npm run docs:deploy",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"lint": "eslint src/ --ext .tsx,.ts",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
"prepare": "dumi setup"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "npm run lint",
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@types/normalize-wheel": "^1.0.1",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"normalize-wheel": "^1.0.1",
"omit.js": "^2.0.2",
"resize-observer-polyfill": "^1.5.1",
"@faker-js/faker": "^7.6.0",
"react": "^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^13.0.0",
"@types/jest": "^27.0.3",
"@umijs/fabric": "^2.8.1",
"@umijs/test": "^3.0.5",
"dumi": "^2.0.0",
"eslint": "^7.32.0",
"father": "^4.0.0-rc.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"np": "^7.7.0",
"prettier": "^2.2.1",
"stylelint": "^13.13.1",
"typescript": "^4.8.4",
"yorkie": "^2.0.0"
}
}