Skip to content
This repository has been archived by the owner on May 19, 2018. It is now read-only.

Commit

Permalink
npm install, npm start
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshire137 committed Mar 14, 2015
1 parent f11aec5 commit 36673f7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
## How to Run/Develop

1. `npm install`
1. `bower install`
1. `npm install --global gulp`
1. `gulp watch`
1. `npm start`

The app runs at [http://localhost:3000](http://localhost:3000/).

## Screenshot

Expand Down
26 changes: 15 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"name": "svgscribbler",
"version": "0.0.0",
"dependencies": {},
"dependencies": {
"bower": "^1.3.12"
},
"devDependencies": {
"del": "~0.1.3",
"gulp": "~3.8.8",
Expand Down Expand Up @@ -31,6 +33,8 @@
"node": ">=0.10.0"
},
"scripts": {
"start": "./node_modules/gulp/bin/gulp.js watch",
"postinstall": "./node_modules/bower/bin/bower install",
"test": "jest"
},
"jest": {
Expand All @@ -40,20 +44,20 @@
]
},
"browserify": {
"transform": [
"browserify-shim",
[
"reactify",
{
"es6": true
}
]
"transform": [
"browserify-shim",
[
"reactify",
{
"es6": true
}
]
]
},
"browser": {
"jquery": "./app/bower_components/jquery/dist/jquery.js"
"jquery": "./app/bower_components/jquery/dist/jquery.js"
},
"browserify-shim": {
"jquery": "$"
"jquery": "$"
}
}

0 comments on commit 36673f7

Please sign in to comment.