-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
package.json
108 lines (108 loc) · 2.94 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
{
"name": "react-virtuoso",
"author": "Petyo Ivanov",
"sideEffects": false,
"version": "0.0.0-semantic-release",
"homepage": "https://virtuoso.dev/",
"license": "MIT",
"source": "src/index.tsx",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"react",
"reactjs",
"virtual",
"endless",
"load more",
"list",
"scrolling",
"infinite",
"virtualized",
"grid",
"feed",
"chat"
],
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest watch",
"e2e": "playwright test",
"lint": "eslint src test e2e --ext .ts,.tsx",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"dev": "LADLE=true ladle serve",
"prepare": "pnpm run build && husky install",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": ">=16 || >=17 || >= 18",
"react-dom": ">=16 || >=17 || >= 18"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@emotion/core": "^11.0.0",
"@emotion/styled": "^11.10.8",
"@faker-js/faker": "^7.6.0",
"@ladle/react": "^2.12.3",
"@playwright/test": "^1.33.0",
"@tanstack/react-table": "^8.9.11",
"@testing-library/react": "^14.0.0",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.194",
"@types/react": "^18.2.64",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.2.21",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-react": "^4.3.1",
"clsx": "^1.2.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"immer": "^10.0.1",
"jsdom": "^22.0.0",
"lodash": "^4.17.21",
"playwright": "^1.33.0",
"prettier": "^2.2.1",
"prism-react-renderer": "^1.3.5",
"react": "18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.14.0",
"semantic-release": "^19.0.5",
"terser": "^5.17.1",
"tslib": "^2.5.0",
"typedoc": "^0.24.6",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.0.4",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]+sha256.2d0363bb6c314daa67087ef07743eea1ba2e2d360c835e8fec6b5575e4ed9484",
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 140,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/petyosi/react-virtuoso.git"
}
}