-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.96 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
{
"name": "better-scrollbar",
"version": "1.0.2",
"description": "Highly customizable, high-performance virtual list for big data rendering.",
"keywords": [
"react",
"scroll",
"scrolling",
"scrollbar",
"scroll-view",
"customizable"
],
"homepage": "https://kampiu.github.io/better-scrollbar/",
"repository": {
"type": "git",
"url": "https://github.com/kampiu/better-scrollbar"
},
"license": "MIT",
"author": "kampiu",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib",
"es"
],
"scripts": {
"build": "father build",
"site:build": "tsc && vite build",
"site:dev": "vite",
"test": "jest --config jest.config.js --no-cache -i --coverage",
"test:dev": "jest --config jest.config.js --no-cache --watchAll",
"test:update": "jest --config jest.config.js --no-cache -u",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.2",
"@types/dom-css": "^2.1.1",
"@types/enzyme": "^3.10.17",
"@types/enzyme-adapter-react-16": "^1.0.9",
"@types/jest": "^29.5.10",
"@types/jest-axe": "^3.5.9",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.3",
"@types/raf": "^3.4.3",
"@types/react": "^16.14.52",
"@types/react-dom": "^16.9.24",
"@types/sortablejs": "^1.15.7",
"@vitejs/plugin-react": "^4.2.0",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"clsx": "^2.1.0",
"coveralls": "^3.1.1",
"dom-css": "^2.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"father": "^4.4.0",
"identity-obj-proxy": "^3.0.0",
"istanbul": "^0.4.5",
"jest": "^29.7.0",
"jest-axe": "^7.0.0",
"jest-environment-jsdom": "^29.0.1",
"jest-environment-node": "^29.0.0",
"jest-image-snapshot": "^6.0.0",
"jest-less-loader": "^0.2.0",
"jest-puppeteer": "^9.0.2",
"jest-transform-css": "^6.0.1",
"jsdom": "^20.0.0",
"less": "^4.2.0",
"path": "^0.12.7",
"prettier": "^3.1.0",
"pretty-format": "^29.7.0",
"react-sortablejs": "^6.1.4",
"resize-observer-polyfill": "^1.5.1",
"sortablejs": "^1.15.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"use-immer": "^0.9.0",
"vite": "^5.0.8"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}