initial commit. Created a basic webpack.config.js file, some basic .babelrc settings, and some notes on the build
This commit is contained in:
parent
9e6b2b9d6e
commit
ad6fff54aa
7 changed files with 2627 additions and 0 deletions
23
package.json
Normal file
23
package.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "subscription-manager",
|
||||
"version": "0.1.0",
|
||||
"description": "a plugin for cockpit to manage subscriptions",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:rarebreed/subscription-manager.git",
|
||||
"author": "",
|
||||
"license": "LGPL-2.1",
|
||||
"scripts": {
|
||||
"build": "webpack"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.25.0",
|
||||
"babel-loader": "^7.0.0",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-preset-env": "^1.5.2",
|
||||
"webpack": "^2.6.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"react": "^15.6.0",
|
||||
"react-dom": "^15.6.0"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue