-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 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
{
"name": "react-table-scroll",
"version": "0.1.3",
"author": "Ontuzhev Viacheslav (Natterum)",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/natterum/react-table-scroll.git"
},
"keywords": [
"react",
"table",
"scroll"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"eslint": "^8.44.0",
"eslint-config-next": "13.4.9",
"react": "^18.3.1",
"react-dom": "18.2.0",
"react-resize-detector": "^11.0.1",
"react-table-scroll": "^0.1.0",
"sass": "^1.63.6",
"typescript": "5.1.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cssnano": "^6.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.26",
"postcss-cli": "^10.1.0",
"prettier": "2.8.1"
}
}