Initial Commit ES6 barebone
This commit is contained in:
35
package.json
Normal file
35
package.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "backbone-es6",
|
||||
"version": "1.0.0",
|
||||
"description": "Backbone JS es6 Template",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "npm-run-all --parallel dev:server lint:watch",
|
||||
"dev:server": "webpack-dev-server --hot --inline",
|
||||
"watch": "webpack -w -d",
|
||||
"build": "webpack -p",
|
||||
"lint": "node_modules/.bin/esw webpack.config.* src --color",
|
||||
"lint:watch": "npm run lint -- --watch"
|
||||
},
|
||||
"keywords": [
|
||||
"es6"
|
||||
],
|
||||
"author": "Indrajith K L <mac91112@gmail.com>",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-loader": "^7.1.2",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"eslint": "^3.5.0",
|
||||
"eslint-watch": "^2.1.14",
|
||||
"npm-run-all": "^4.0.2",
|
||||
"webpack": "^3.8.1",
|
||||
"webpack-dev-server": "^2.9.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"backbone": "^1.3.3",
|
||||
"jquery": "^3.2.1",
|
||||
"mustache": "^2.3.0",
|
||||
"underscore": "^1.8.3"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user