Skip to content

Commit

Permalink
Impelement UI using React
Browse files Browse the repository at this point in the history
Fixes #101
  • Loading branch information
ipeychev committed Feb 18, 2015
1 parent b9b585d commit fe6b811
Show file tree
Hide file tree
Showing 61 changed files with 26,362 additions and 7 deletions.
65 changes: 65 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"camelcase" : true,
"nonew": false,
"plusplus": true,
"regexp": false,
"undef": true,
"strict": true,
"trailing": false,
"asi": false,
"boss": false,
"debug": false,
"eqnull": false,
"es3": true,
"esnext": false,
"evil": false,
"expr": false,
"predef": ["React", "global", "YUI", "CKEDITOR"],
"unused": true,
"indent": 2,
"funcscope": false,
"globalstrict": false,
"iterator": false,
"lastsemic": false,
"laxbreak": false,
"laxcomma": false,
"loopfunc": false,
"multistr": false,
"onecase": true,
"proto": false,
"regexdash": false,
"scripturl": false,
"smarttabs": true,
"shadow": false,
"sub": false,
"supernew": false,
"validthis": true,
"browser": true,
"couch": false,
"devel": false,
"dojo": false,
"jquery": false,
"mootools": false,
"node": false,
"nonstandard": false,
"prototypejs": false,
"rhino": false,
"wsh": false,
"nomen": false,
"onevar": true,
"passfail": false,
"white": true,
"maxlen": 120,
"maxparams" : 3,
"maxdepth" : 3,
"maxerr": 100
}
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,23 @@
"description": "Alloy Editor",
"dependencies": {},
"devDependencies": {
"bourbon": "https://github.com/thoughtbot/bourbon/tarball/master",
"chai": "^1.10.0",
"del": "^1.1.1",
"event-stream": "^3.2.1",
"event-stream": "^3.2.2",
"gulp": "~3.8.10",
"gulp-compass": "^2.0.3",
"gulp-concat": "^2.4.3",
"gulp-consolidate": "^0.1.2",
"gulp-iconfont": "^1.0.0",
"gulp-karma": "0.0.4",
"gulp-minify-css": "^0.3.12",
"gulp-minify-css": "^0.4.5",
"gulp-react": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "~1.2.4",
"gulp-template": "^2.0.0",
"gulp-uglify": "^1.0.2",
"gulp-replace": "^0.5.2",
"gulp-sass": "~1.3.2",
"gulp-template": "^3.0.0",
"gulp-uglify": "^1.1.0",
"gulp-zip": "^2.0.2",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
Expand All @@ -31,12 +34,12 @@
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.2.10",
"karma-sinon": "^1.0.4",
"lodash": "^3.0.0",
"lodash": "^3.1.0",
"mocha": "^2.1.0",
"require-dir": "^0.1.0",
"run-sequence": "^1.0.2",
"sinon": "^1.12.2",
"yargs": "^1.3.3"
"yargs": "^2.3.0"
},
"scripts": {
"test": "gulp test"
Expand Down
Loading

0 comments on commit fe6b811

Please sign in to comment.