some usefull scripts added to package.json

pull/7/head
LianaHus 9 years ago
parent 8f2c51547f
commit 7154a5062a
  1. 22
      package.json

@ -2,17 +2,31 @@
"name": "remix", "name": "remix",
"version": "0.0.1", "version": "0.0.1",
"description": "Ethereum IDE and tools for the web", "description": "Ethereum IDE and tools for the web",
"contributors": [
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
},
{
"name": "Liana Husikyan",
"email": "liana@ethdev.com"
}
],
"main": "index.js", "main": "index.js",
"dependencies": { "dependencies": {
"babel-preset-react": "^6.5.0", "babel-preset-react": "^6.5.0",
"babelify": "^7.2.0", "babelify": "^7.2.0",
"react": "^15.0.1", "react": "^15.0.1",
"react-dom": "^15.0.1" "react-dom": "^15.0.1",
"web3": "^0.15.3"
},
"devDependencies": {
"web3": "^0.15.3"
}, },
"devDependencies": {},
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "install": "npm install --save react react-dom; npm install -g browserify; npm install --save babelify babel-preset-react; npm install web3",
"build": "browserify -t [ babelify --presets [ react ] ] src/index.js -o build/app.js" "start_node": "cd ../webthree/eth; ./eth --rpccorsdomain \"*\" -j --admin-via-http -v 0",
"build": "mkdir -p build; browserify -t [ babelify --presets [ react ] ] src/index.js -o build/app.js"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

Loading…
Cancel
Save