aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 00c234116658f9afc27c4eaf6f1843d815111bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  "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"
  }
}