forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.84 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
{
"name": "react-grid-layout",
"version": "1.1.1",
"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"
},
"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": {
"classnames": "2.x",
"lodash.isequal": "^4.0.0",
"prop-types": "^15.0.0",
"react-draggable": "^4.0.0",
"react-resizable": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-flow-comments": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-flow": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-preval": "^5.0.0",
"css-loader": "^4.2.2",
"ejs": "^3.1.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.8.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-react": "^7.20.6",
"exports-loader": "^1.1.0",
"flow-bin": "^0.133.0",
"husky": "^4.2.5",
"imports-loader": "^1.1.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"lodash": "^4.17.20",
"opener": "^1.5.2",
"prettier": "^2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-transform-hmr": "^1.0.2",
"style-loader": "^1.2.1",
"timsort": "^0.3.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>test/util/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testMatch": [
"<rootDir>/test/spec/*.js"
],
"testURL": "http://localhost"
},
"lint-staged": {
"*.{js,jsx,css}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && make lint && make test"
}
}
}