Add package.json

This commit is contained in:
vrde 2015-05-12 15:28:59 +02:00
parent bf649776f4
commit bd2dbbce3a
3 changed files with 31 additions and 2 deletions

1
.gitignore vendored
View File

@ -14,3 +14,4 @@ results
node_modules
npm-debug.log
build/

View File

@ -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/)

18
package.json Normal file
View File

@ -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 <alberto@ascribe.io>"
}