Files
es6-backbone/package.json
2017-11-02 15:47:14 +05:30

39 lines
997 B
JSON

{
"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": {
"axios": "^0.17.0",
"backbone": "^1.3.3",
"html-loader": "^0.5.1",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mustache": "^2.3.0",
"underscore": "^1.8.3"
}
}