-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.86 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
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "react-drag-handle",
"version": "1.0.6",
"description": "Just the drag handles...React icons indicating a surface is draggable",
"repository": "https://github.com/trickl/react-drag-handle",
"author": {
"name": "Tim Gee",
"url": "https://github.com/trickl"
},
"bugs": {
"url": "https://github.com/trickl/react-drag-handle/issues"
},
"license": "MIT",
"keywords": [
"react",
"react-component",
"icon",
"surface",
"drag",
"handle",
"ui"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
"@babel/plugin-proposal-function-sent": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-throw-expressions": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.16.0",
"@babel/runtime": "^7.16.0",
"@mdx-js/rollup": "^2.0.0-rc.1",
"@mui/material": "^5.1.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addons": "^6.3.12",
"@storybook/react": "^7.4.6",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"chromatic": "^6.0.5",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-find-rules": "^3.6.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mdx": "^1.16.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^7.0.4",
"install-peers": "^1.0.3",
"install-peers-cli": "^2.2.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"node-dev": "^7.1.0",
"prettier": "^2.4.1",
"require-dir": "^1.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.58.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@types/lodash": "^4.14.176",
"@types/react": "^17.0.33",
"classnames": "^2.3.1"
},
"peerDependencies": {
"prop-types": ">=15.7.2",
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"prepare": "install-peers && rimraf rish && npm run build",
"build": "rollup -c",
"test": "jest",
"lint": "npm run eslint",
"eslint": "eslint --ext js,jsx,ts,tsx,md,mdx src --color",
"eslint:fix": "eslint --ext js,jsx,ts,tsx,md,mdx src --color --fix",
"eslint-rules": "eslint-find-rules .eslintrc.json --current",
"prettier": "prettier --single-quote --write 'src/**/*.{jsx,js,ts,tsx,scss,mdx}'",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}