-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
{
"name": "use-table-drag-select",
"version": "0.2.0",
"description": "A React hook for selecting table cells by dragging",
"keywords": [
"react",
"timetable",
"schedule",
"table",
"component",
"select"
],
"homepage": "https://jeonbyeongmin.github.io/use-table-drag-select/",
"repository": {
"type": "git",
"url": "https://github.com/jeonbyeongmin/use-table-drag-select"
},
"license": "MIT",
"author": {
"name": "Byeongmin Jeon",
"email": "[email protected]",
"url": "https://github.com/jeonbyeongmin"
},
"sideEffects": false,
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist esm && tsc -p tsconfig.build.json --declaration --emitDeclarationOnly --declarationDir dist && rollup -c rollup.config.js",
"prepack": "yarn build",
"unit": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "yarn typecheck && yarn lint && yarn unit",
"sort": "npx sort-package-json"
},
"dependencies": {
"@types/react": "^18.2.6"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@jeonbyeongmin/eslint-config": "^0.1.4",
"@jeonbyeongmin/prettier-config": "^0.1.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rushstack/eslint-patch": "^1.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/react-dom": "^18.2.4",
"builtin-modules": "^3.3.0",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.21.7",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18"
}
}