39 lines
997 B
JSON
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": "^4.19.1",
|
|
"eslint-watch": "^3.1.3",
|
|
"npm-run-all": "^4.0.2",
|
|
"webpack": "^4.2.0",
|
|
"webpack-dev-server": "^3.1.1"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.18.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"
|
|
}
|
|
}
|