forked from stephenlacy/react-datagrid2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.51 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
{
"name": "react-datagrid2",
"version": "3.0.0",
"description": "React DataGrid",
"main": "lib/index.js",
"scripts": {
"test": "mocha --recursive --reporter spec --require should",
"test-w": "mocha --recursive --reporter spec --require should --watch",
"lib": "gulp",
"build-style": "webpack --progress --colors --config build/build-style.config.js",
"build-style-dist": "webpack --progress --colors --config build/build-style-dist.config.js",
"build-style-dist-min": "webpack --progress --colors --config build/build-style-dist-min.config.js",
"stats": "webpack --profile --progress --colors --config build/dist.config.js --json > stats.json",
"dist": "webpack --progress --colors --config build/dist.config.js",
"watch-dist": "webpack --watch --progress --colors --config build/dist.config.js",
"dist.min": "webpack --progress --colors -p --config build/dist.min.config.js",
"build": "NODE_ENV=production npm run lib && npm run dist && npm run dist.min && npm run build-style && npm run build-style-dist && npm run build-style-dist-min",
"build:example": "NODE_ENV=production PORT=9090 webpack --output-filename ./assets/bundle.js --progress --colors --config build/dev.config.js",
"dev": "NODE_ENV=production PORT=9090 webpack-dev-server --progress --colors --config build/dev.config.js",
"hot": "NODE_ENV=production HOT=true PORT=9090 webpack-dev-server --progress --colors --config build/dev.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stevelacy/react-datagrid2.git"
},
"keywords": [
"grid",
"datagrid",
"data-grid",
"grid",
"widget",
"table",
"list",
"react-component",
"react",
"grid"
],
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "6.24.1",
"css-loader": "^0.28.1",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^2.1.0",
"faker": "^4.1.0",
"file-loader": "^0.11.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jsdom": "10.1.0",
"json-loader": "^0.5.4",
"mocha": "^3.4.1",
"node-libs-browser": "^2.0.0",
"normalize.css": "^7.0.0",
"parse-keys": "^1.3.0",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^1.3.1",
"should": "^11.2.1",
"sorty": "^1.2.2",
"style-loader": "^0.17.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"clone": "^2.1.1",
"create-react-class": "^15.6.2",
"css-utils": "^1.0.0",
"drag-helper": "^1.3.6",
"es6-promise": "^4.1.0",
"has-touch": "^1.0.1",
"hasown": "^1.0.1",
"object-assign": "^4.1.1",
"react-class": "^3.2.2",
"react-dom-factories": "^1.0.2",
"react-menus2": "3.0.0",
"react-simple-toolbar": "^1.0.5",
"react-style-normalizer": "^1.2.8",
"react-virtual-scroller2": "^2.3.1",
"region": "^2.1.2",
"region-align": "^2.1.3",
"ustring": "^1.4.1",
"whatwg-fetch": "^2.0.3"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"author": "ZippyUI ~2016 | Steve Lacy ~2017",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/stevelacy/react-datagrid2/issues"
},
"homepage": "https://github.com/stevelacy/react-datagrid2"
}