Skip to content

Commit

Permalink
initial checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
ceolter committed Jan 22, 2016
1 parent 8724cf5 commit 52f1343
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
33 changes: 33 additions & 0 deletions package1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "ag-grid-react-example",
"version": "0.0.1",
"description": "Example Reach applicaiton using ag-Grid.",
"main": "dist/ag-grid-react-example.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ceolter/ag-grid-react-example.git"
},
"keywords": [
"react",
"grid",
"data",
"table"
],
"author": "Niall Crosby <niall.crosby@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ceolter/ag-grid/issues"
},
"homepage": "http://www.ag-grid.com/",
"devDependencies": {
"webpack": "1.12.11",
"react": "0.14.6",
"react-dom": "0.14.6",
"babel-loader": "6.2.1",
"babel-preset-react": "6.3.13",
"babel-preset-es2015": "6.3.13"
}
}
22 changes: 22 additions & 0 deletions webpack.config1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
entry: "./src/index.js",
output: {
path: __dirname,
filename: "bundle.js"
},
module: {
loaders: [
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.js$|\.jsx$/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015']
}
}
]
}
};

0 comments on commit 52f1343

Please sign in to comment.