package.json 2.4 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 .",
6 7
    "eslint-fix": "eslint --max-warnings 0 --ext .js,.js.es6 --fix .",
    "eslint-report": "eslint --max-warnings 0 --ext .js,.js.es6 --format html --output-file ./eslint-report.html .",
8
    "karma": "karma start config/karma.config.js --single-run",
M
Mike Greiling 已提交
9 10
    "karma-start": "karma start config/karma.config.js",
    "webpack": "webpack --config config/webpack.config.js",
11
    "webpack-prod": "NODE_ENV=production webpack --config config/webpack.config.js"
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",
E
Eric Eastwood 已提交
21
    "document-register-element": "^1.3.0",
22
    "dropzone": "^4.2.0",
E
Eric Eastwood 已提交
23
    "emoji-unicode-version": "^0.2.1",
24
    "es6-promise": "^4.0.5",
25 26
    "jquery": "^2.2.1",
    "jquery-ujs": "^1.2.1",
27
    "js-cookie": "^2.1.3",
28
    "mousetrap": "^1.4.6",
P
Phil Hughes 已提交
29
    "pikaday": "^1.5.1",
30
    "raphael": "^2.2.7",
F
Filipa Lacerda 已提交
31
    "raw-loader": "^0.5.1",
32
    "select2": "3.5.2-browserify",
M
Mike Greiling 已提交
33
    "stats-webpack-plugin": "^0.4.3",
E
Eric Eastwood 已提交
34 35
    "string.fromcodepoint": "^0.2.1",
    "string.prototype.codepointat": "^0.2.0",
36
    "timeago.js": "^2.0.5",
37
    "underscore": "^1.8.3",
38
    "vue": "^2.1.10",
39
    "vue-resource": "^0.9.3",
40 41
    "webpack": "^2.2.1",
    "webpack-bundle-analyzer": "^2.3.0"
42
  },
W
winniehell 已提交
43
  "devDependencies": {
44
    "babel-plugin-istanbul": "^4.0.0",
45 46
    "eslint": "^3.10.1",
    "eslint-config-airbnb-base": "^10.0.1",
47
    "eslint-import-resolver-webpack": "^0.8.1",
48
    "eslint-plugin-filenames": "^1.1.0",
49 50
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jasmine": "^2.1.0",
M
Mike Greiling 已提交
51
    "istanbul": "^0.4.5",
52 53
    "jasmine-core": "^2.5.2",
    "jasmine-jquery": "^2.1.1",
54
    "karma": "^1.4.1",
55
    "karma-coverage-istanbul-reporter": "^0.2.0",
56
    "karma-jasmine": "^1.1.0",
57
    "karma-mocha-reporter": "^2.2.2",
M
Mike Greiling 已提交
58
    "karma-phantomjs-launcher": "^1.0.2",
M
Mike Greiling 已提交
59
    "karma-sourcemap-loader": "^0.3.7",
60 61
    "karma-webpack": "^2.0.2",
    "webpack-dev-server": "^2.3.0"
62 63 64 65 66 67 68 69
  },
  "nyc": {
    "exclude": [
      "spec/javascripts/test_bundle.js",
      "spec/javascripts/**/*_spec.js",
      "spec/javascripts/**/*_spec.js.es6",
      "app/assets/javascripts/droplab/**/*"
    ]
W
winniehell 已提交
70 71
  }
}