forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.28 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
125
126
{
"name": "react-grid-layout",
"version": "1.3.4",
"description": "A draggable and resizable grid layout with responsive breakpoints, for React.",
"main": "index.js",
"scripts": {
"lint": "make lint",
"test": "make test",
"build": "make build",
"build-example": "make build-example",
"view-example": "make view-example",
"dev": "make dev",
"prepublishOnly": "make build",
"validate": "npm ls",
"flow": "flow",
"fmt": "prettier --write ./**.{json,js,yml,md}",
"fmt:check": "prettier --check ./**.{json,js,yml,md}"
},
"repository": {
"type": "git",
"url": "[email protected]:STRML/react-grid-layout.git"
},
"keywords": [
"react",
"grid",
"drag",
"draggable",
"resize",
"resizable",
"fluid",
"responsive"
],
"author": "Samuel Reed <[email protected]> (http://strml.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/STRML/react-grid-layout/issues"
},
"homepage": "https://github.com/STRML/react-grid-layout",
"dependencies": {
"clsx": "^1.2.1",
"fast-equals": "^5.0.0",
"prop-types": "^15.8.1",
"react-draggable": "^4.4.5",
"react-resizable": "^3.0.4"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-flow-comments": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.21.0",
"@webpack-cli/serve": "^2.0.1",
"babel-jest": "^29.4.3",
"babel-loader": "^9.1.2",
"babel-plugin-preval": "^5.1.0",
"css-loader": "^6.7.3",
"ejs": "^3.1.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.34.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unicorn": "^45.0.2",
"exports-loader": "^4.0.0",
"flow-bin": "^0.172.0",
"husky": "^8.0.3",
"imports-loader": "^4.0.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.2",
"lodash": "^4.17.21",
"opener": "^1.5.2",
"prettier": "^2.8.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.1",
"react-transform-hmr": "^1.0.2",
"style-loader": "^3.2.1",
"timsort": "^0.3.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>test/util/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testMatch": [
"<rootDir>/test/spec/*.js"
],
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"url": "http://localhost"
},
"coverageThreshold": {
"global": {
"statements": 77,
"branches": 72,
"functions": 77,
"lines": 78
}
}
},
"lint-staged": {
"*.{js,jsx,css}": [
"eslint --ext .js,.jsx --fix",
"yarn fmt"
]
}
}