forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.57 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
{
"name": "react-grid-layout",
"version": "0.16.6",
"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",
"precommit": "lint-staged && make lint"
},
"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.x",
"react-draggable": "3.x",
"react-resizable": "1.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-plugin-transform-react-inline-elements": "^6.6.5",
"babel-plugin-typecheck": "^3.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.9",
"ejs": "^2.4.1",
"eslint": "^4.17.0",
"eslint-plugin-flowtype": "^2.44.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.6.1",
"exports-loader": "^0.7.0",
"flow-bin": "^0.65.0",
"husky": "^0.14.3",
"imports-loader": "^0.7.1",
"jest-cli": "^22.3.0",
"lint-staged": "^6.1.0",
"lodash": "^4.17.5",
"opener": "^1.4.3",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-transform-hmr": "^1.0.2",
"style-loader": "^0.20.2",
"valiquire": "^0.3.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"testMatch": [
"<rootDir>/test/spec/*.js"
]
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
],
"*.css": [
"prettier --write",
"git add"
]
}
}