package.json 1.7 KB
Newer Older
W
winniehell 已提交
1 2 3
{
  "private": true,
  "scripts": {
M
Mike Greiling 已提交
4
    "dev-server": "webpack-dev-server --config config/webpack.config.js",
5
    "eslint": "eslint --max-warnings 0 --ext .js,.js.es6 .",
W
winniehell 已提交
6
    "eslint-fix": "npm run eslint -- --fix",
7
    "eslint-report": "npm run eslint -- --format html --output-file ./eslint-report.html",
8
    "karma": "karma start config/karma.config.js --single-run",
M
Mike Greiling 已提交
9 10 11
    "karma-start": "karma start config/karma.config.js",
    "webpack": "webpack --config config/webpack.config.js",
    "webpack-prod": "NODE_ENV=production npm run webpack"
W
winniehell 已提交
12
  },
13
  "dependencies": {
M
Mike Greiling 已提交
14 15 16 17
    "babel-core": "^6.22.1",
    "babel-loader": "^6.2.10",
    "babel-preset-es2015": "^6.22.0",
    "babel-preset-stage-2": "^6.22.0",
18
    "bootstrap-sass": "3.3.6",
P
Phil Hughes 已提交
19
    "compression-webpack-plugin": "^0.3.2",
20
    "d3": "3.5.11",
21 22 23 24 25 26 27 28
    "dropzone": "4.2.0",
    "exports-loader": "^0.6.3",
    "imports-loader": "^0.6.5",
    "jquery": "2.2.1",
    "jquery-ui": "github:jquery/jquery-ui#1.11.4",
    "jquery-ujs": "1.2.1",
    "json-loader": "^0.5.4",
    "mousetrap": "1.4.6",
P
Phil Hughes 已提交
29
    "pikaday": "^1.5.1",
30
    "select2": "3.5.2-browserify",
31
    "stats-webpack-plugin": "^0.4.2",
32
    "underscore": "1.8.3",
33
    "vue": "2.0.3",
34
    "vue-resource": "0.9.3",
M
Mike Greiling 已提交
35
    "webpack": "^1.14.0",
36 37
    "webpack-dev-server": "^1.16.2"
  },
W
winniehell 已提交
38
  "devDependencies": {
39 40
    "eslint": "^3.10.1",
    "eslint-config-airbnb-base": "^10.0.1",
41
    "eslint-plugin-filenames": "^1.1.0",
42 43
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jasmine": "^2.1.0",
M
Mike Greiling 已提交
44
    "istanbul": "^0.4.5",
45 46 47 48
    "jasmine-core": "^2.5.2",
    "jasmine-jquery": "^2.1.1",
    "karma": "^1.3.0",
    "karma-jasmine": "^1.1.0",
M
Mike Greiling 已提交
49
    "karma-phantomjs-launcher": "^1.0.2",
M
Mike Greiling 已提交
50
    "karma-sourcemap-loader": "^0.3.7",
51
    "karma-webpack": "^1.8.0"
W
winniehell 已提交
52 53
  }
}