-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
42 lines (42 loc) · 1.41 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
{
"name": "react-absolute-grid",
"version": "3.0.1",
"description": "An absolutely positioned responsive touch-enabled fully configurable React grid with drag/drop, filtering, and sorting",
"main": "dist/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack/build.config.js --optimize-minimize",
"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 lib",
"prepare": "npm run lint && npm run build"
},
"author": "Jonathan Rowny",
"contributors": [
{
"name": "Andrey Okonetchnikov",
"email": "[email protected]",
"url": "http://okonet.ru"
}
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.17.0",
"eslint-plugin-react": "^6.10.0",
"lodash": "^4.17.1",
"node-libs-browser": "^2.0.0",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-perf": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.12.1"
}
}