package.json 1.5 KB
Newer Older
W
winniehell 已提交
1 2 3
{
  "private": true,
  "scripts": {
4
    "dev-server": "node_modules/.bin/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",
9
    "karma-start": "karma start config/karma.config.js"
W
winniehell 已提交
10
  },
11
  "dependencies": {
12 13 14
    "babel": "^5.8.38",
    "babel-core": "^5.8.38",
    "babel-loader": "^5.4.2",
15
    "bootstrap-sass": "3.3.6",
P
Phil Hughes 已提交
16
    "compression-webpack-plugin": "^0.3.2",
17
    "d3": "3.5.11",
18 19 20 21 22 23 24 25 26
    "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",
    "select2": "3.5.2-browserify",
27
    "stats-webpack-plugin": "^0.4.2",
28
    "underscore": "1.8.3",
29
    "vue": "2.0.3",
30
    "vue-resource": "0.9.3",
M
Mike Greiling 已提交
31
    "webpack": "^1.14.0",
32 33
    "webpack-dev-server": "^1.16.2"
  },
W
winniehell 已提交
34
  "devDependencies": {
35 36
    "eslint": "^3.10.1",
    "eslint-config-airbnb-base": "^10.0.1",
37
    "eslint-plugin-filenames": "^1.1.0",
38 39
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jasmine": "^2.1.0",
M
Mike Greiling 已提交
40
    "istanbul": "^0.4.5",
41 42 43 44
    "jasmine-core": "^2.5.2",
    "jasmine-jquery": "^2.1.1",
    "karma": "^1.3.0",
    "karma-jasmine": "^1.1.0",
M
Mike Greiling 已提交
45
    "karma-phantomjs-launcher": "^1.0.2",
M
Mike Greiling 已提交
46
    "karma-sourcemap-loader": "^0.3.7",
47
    "karma-webpack": "^1.8.0"
W
winniehell 已提交
48 49
  }
}