This repository was archived by the owner on Jun 16, 2022. It is now read-only.
forked from jrowny/react-absolute-grid
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 KB
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
{
"name": "@socialtables/react-absolute-grid",
"version": "6.0.0",
"description": "An absolutely positioned responsive touch-enabled fully configurable React grid with drag/drop, filtering, and sorting",
"main": "demos/index.html",
"scripts": {
"build-demo": "webpack --config 'webpack/demo.config.js' --optimize-minimize --content-base demo",
"dev": "webpack-dev-server --config 'webpack/dev.config.js' --devtool eval --progress --colors --hot --content-base demo",
"lint": "eslint src",
"build": "babel src --out-dir lib",
"watch": "babel src --watch --out-dir lib",
"prepublish": "npm run build"
},
"author": "Jonathan Rowny",
"license": "MIT",
"dependencies": {
"lodash.debounce": "^3.1.1",
"lodash.sortby": "^3.1.5"
},
"peerDependencies": {
"react": ">= 0.16.0",
"react-dom": ">= 0.16.0"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^3.1.9",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^0.21.2",
"eslint-plugin-react": "^2.4.0",
"lodash": "^3.10.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "1.12.15"
}
}