-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
104 lines (104 loc) · 2.68 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "flusight",
"version": "2.2.3",
"description": "Flu predictions visualizer",
"author": "Abhinav Tushar <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"parse": "node scripts/parse.js",
"test": "standard \"./**/*.vue\" \"./**/*.js\" && mocha",
"build": "node build/build.js",
"deploy": "gh-pages-deploy"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"vue"
],
"ignore": [
"./src/assets/analytics.js",
"./zoltar/*.js"
]
},
"dependencies": {
"babel-runtime": "^6.0.0",
"bulma": "^0.2.1",
"child-process-promise": "^2.2.1",
"colormap": "^2.2.0",
"d3": "4.5.0",
"d3-foresight": "0.10.1",
"datamaps": "^0.5.8",
"flusight-csv-tools": "^0.1.5",
"font-awesome": "^4.6.3",
"js-cookie": "^2.1.3",
"js-yaml": "^3.6.1",
"moize": "^4.0.4",
"nprogress": "^0.2.0",
"papaparse": "^4.1.2",
"progress": "^1.1.8",
"tablesort": "^5.0.1",
"textures": "^1.0.4",
"tinycolor2": "^1.4.1",
"topojson": "^1.6.27",
"vue": "^1.0.21",
"vue-head": "^2.0.10",
"vue-resource": "^1.3.4",
"vuex": "^2.1.1",
"walk": "^2.3.9"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-register": "^6.0.0",
"chai": "^3.5.0",
"chai-json-schema": "^1.4.0",
"connect-history-api-fallback": "^1.1.0",
"css-loader": "^0.25.0",
"eslint-plugin-vue": "^1.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.1",
"fs-extra": "^5.0.0",
"function-bind": "^1.0.2",
"gh-pages-deploy": "^0.4.2",
"html-webpack-plugin": "^2.8.1",
"http-proxy-middleware": "^0.17.2",
"json-loader": "^0.5.4",
"json-schema-generator": "^2.0.3",
"mocha": "^3.2.0",
"node-sass": "^3.10.1",
"ora": "^0.3.0",
"pug": "^2.0.0-beta6",
"sass-loader": "^4.0.2",
"shelljs": "^0.7.4",
"standard": "^8.6.0",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.2.3",
"vue-loader": "^8.3.0",
"vue-style-loader": "^1.0.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^0.14.1",
"yaml-loader": "^0.4.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"gh-pages-deploy": {
"staticpath": "dist",
"prep": [
"build"
],
"noprompt": true
}
}