-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.26 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
109
110
111
112
{
"name": "react-transfer-list",
"version": "1.6.4",
"type": "module",
"description": "A Material UI based Transfer List supporting drag and drop",
"repository": "https://github.com/trickl/react-transfer-list",
"author": {
"name": "Tim Gee",
"url": "https://github.com/trickl"
},
"bugs": {
"url": "https://github.com/trickl/react-transfer-list/issues"
},
"license": "MIT",
"keywords": [
"react",
"react-component",
"transfer",
"list",
"material",
"draggable",
"ui"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^1.5.0",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.15.20",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@storybook/addon-themes": "^8.1.10",
"@storybook/builder-vite": "^8.1.10",
"@storybook/cli": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"@testing-library/react": "^16.0.0",
"@trickl/react-props-md-table": "^1.0.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/react-beautiful-dnd": "^13.1.8",
"@vitejs/plugin-react": "^4.3.1",
"chromatic": "^11.5.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-find-rules": "^4.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"node-dev": "^8.0.0",
"prettier": "^3.3.2",
"require-dir": "^1.2.0",
"rollup": "^4.18.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.1.10",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "npm run eslint",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"eslint:fix": "eslint --ext .js,.jsx,.ts,.tsx src --color --fix",
"eslint-rules": "eslint-find-rules .eslintrc.json --current",
"prettier": "prettier --single-quote --write 'src/**/*.{jsx,js,ts,tsx,scss}'",
"storybook": "storybook dev",
"build-storybook": "storybook build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"classnames": "^2.5.1",
"react-beautiful-dnd": "^13.1.1"
}
}