diff --git a/.gitignore b/.gitignore index 21802f4b..e7317800 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ results node_modules npm-debug.log +build/ diff --git a/README.md b/README.md index 2bbd7fef..46005759 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,17 @@ and SEO is possible. Getting started =============== -Read list: - - [alt.js](http://alt.js.org/) +```bash +git clone git@bitbucket.org:ascribe/onion.git +cd onion +npm install +npm run build +``` + + + +Reading list +============ +- [alt.js](http://alt.js.org/) diff --git a/package.json b/package.json new file mode 100644 index 00000000..4c79f2fa --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "onion", + "version": "0.0.0", + "description": "Web client for ascribe", + "main": "server.js", + "dependencies": { + "alt": "^0.16.0", + "react": "^0.12.2" + }, + "devDependencies": { + "browserify": "^8.0.3", + "reactify": "^0.17.1" + }, + "scripts": { + "build": "browserify -t [reactify --es6] src/app.jsx > build/app.js" + }, + "author": "Alberto Granzotto " +}