aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: f7c89fc46a3db78fc1e568887a2c4c9f33753e09 (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
{
  "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"
  }
}