tiy-starter-kit
Version:
a lightweight build system for transpiling js & scss, browserifying and running a simple node server. auto-installs backbone and react
53 lines (52 loc) • 1.43 kB
JSON
{
"name": "tiy-starter-kit",
"version": "0.0.0",
"description": "a lightweight build system for transpiling js & scss, browserifying and running a simple node server. auto-installs backbone and react",
"main": "index.html",
"scripts": {
"go": "npm run scaffold && npm run watch && echo 'here we will also start the server'",
"scaffold": "mkdir dist src src/scripts src/styles && touch src/scripts/app.js src/styles/style.scss",
"start": "",
"watch-js": "./node_modules/.bin/watchify src/scripts/app.js -t babelify -o dist/app.js",
"watch-css": "./node_modules/.bin/node-sass -w --output-style compressed src/styles/style.scss dist/style.css",
"watch": "npm run watch-js"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/magentanova/tiy-starter-kit.git"
},
"keywords": [
"babel",
"build",
"scsss",
"node"
],
"author": "magentanova",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"node-sass": "^3.7.0",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
},
"dependencies": {
"backbone": "^1.3.3",
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}