You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.1 KiB
70 lines
2.1 KiB
{ |
|
"name": "react-browserify-spa-seed", |
|
"version": "0.0.1", |
|
"description": "Seed project for React, Browserify, Rework SPAs", |
|
"main": "index.js", |
|
"repository": { |
|
"type": "git", |
|
"url": "git@github.com:mgonto/react-browserify-spa-seed.git" |
|
}, |
|
"authors": [ |
|
"Martin Gontovnikas <martin@gon.to> (http://gon.to/)" |
|
], |
|
"browserify": { |
|
"transform": [ |
|
"babelify" |
|
] |
|
}, |
|
"scripts": { |
|
"start": "npm run build && serve .", |
|
"build": "npm run build-js && npm run build-css", |
|
"watch": "npm run watch-js & npm run watch-css & serve .", |
|
"test": "npm run lint -s && npm run build", |
|
"build-css": "rework-npm index.css | cleancss -o build/build.css", |
|
"build-js": "browserify --extension=.jsx --extension=.js src/app.jsx | uglifyjs > build/build.js", |
|
"watch-js": "watchify --extension=.jsx --extension=.js src/app.jsx -o build/build.js --debug --verbose", |
|
"watch-css": "nodemon -e css --ignore build/build.css --exec 'rework-npm index.css -o build/build.css'", |
|
"lint-eslint": "eslint .", |
|
"lint-jscs": "jscs .", |
|
"lint": "npm run lint-eslint && npm run lint-jscs" |
|
}, |
|
"license": "MIT", |
|
"bugs": { |
|
"url": "https://github.com/mgonto/react-browserify-spa-seed/issues" |
|
}, |
|
"homepage": "https://github.com/mgonto/react-browserify-spa-seed", |
|
"dependencies": { |
|
"bootstrap": "^3.3.0", |
|
"flux": "^2.0.1", |
|
"jwt-decode": "^1.1.0", |
|
"react": "^0.13", |
|
"react-mixin": "^1.1.0", |
|
"react-router": "^0.13.2", |
|
"reqwest": "^1.1.5", |
|
"when": "^3.7.2" |
|
}, |
|
"devDependencies": { |
|
"babelify": "^6.1.0", |
|
"browser-sync": "^2.1.6", |
|
"browserify": "^8.0.3", |
|
"clean-css": "^3.1.9", |
|
"eslint": "^0.14.1", |
|
"gulp": "^3.9.0", |
|
"gulp-autoprefixer": "^3.1.0", |
|
"gulp-notify": "^2.2.0", |
|
"gulp-rename": "^1.2.2", |
|
"gulp-stylus": "^2.1.0", |
|
"gulp-uglify": "^1.5.1", |
|
"gulp-util": "^3.0.7", |
|
"nodemon": "^1.5.0", |
|
"reactify": "^1.1.1", |
|
"rework": "^1.0.1", |
|
"rework-npm": "^1.0.0", |
|
"rework-npm-cli": "^0.1.1", |
|
"serve": "^1.4.0", |
|
"uglify-js": "^2.4.15", |
|
"vinyl-buffer": "^1.0.0", |
|
"vinyl-source-stream": "^1.1.0", |
|
"watchify": "^2.1.1" |
|
} |
|
}
|
|
|