You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
54 lines
1.7 KiB
{ |
|
"name": "d3vue", |
|
"version": "1.0.0", |
|
"description": "An example project of how use Vue.js with D3.js", |
|
"author": "CorpGlory <twitter.com/corpglory>", |
|
"private": true, |
|
"scripts": { |
|
"dev": "node build/dev-server.js", |
|
"build": "node build/build.js", |
|
"publish": "npm run build && git checkout gh-pages && rm -rf static; rm index.html ; mv dist/static . && mv -f dist/index.html . && sed -i 's//static/static/g' index.html && git add . && git push" |
|
}, |
|
"dependencies": { |
|
"d3": "^4.6.0", |
|
"vue": "^2.1.10", |
|
"vue-router": "^2.2.0" |
|
}, |
|
"devDependencies": { |
|
"autoprefixer": "^6.7.2", |
|
"babel-core": "^6.22.1", |
|
"babel-loader": "^6.2.10", |
|
"babel-plugin-transform-runtime": "^6.22.0", |
|
"babel-preset-es2015": "^6.22.0", |
|
"babel-preset-stage-2": "^6.22.0", |
|
"babel-register": "^6.22.0", |
|
"chalk": "^1.1.3", |
|
"connect-history-api-fallback": "^1.3.0", |
|
"css-loader": "^0.26.1", |
|
"eventsource-polyfill": "^0.9.6", |
|
"express": "^4.14.1", |
|
"extract-text-webpack-plugin": "^2.0.0-rc.2", |
|
"file-loader": "^0.10.0", |
|
"friendly-errors-webpack-plugin": "^1.1.3", |
|
"function-bind": "^1.1.0", |
|
"html-webpack-plugin": "^2.28.0", |
|
"http-proxy-middleware": "^0.17.3", |
|
"webpack-bundle-analyzer": "^2.2.1", |
|
"semver": "^5.3.0", |
|
"opn": "^4.0.2", |
|
"ora": "^1.1.0", |
|
"shelljs": "^0.7.6", |
|
"url-loader": "^0.5.7", |
|
"vue-loader": "^10.3.0", |
|
"vue-style-loader": "^2.0.0", |
|
"vue-template-compiler": "^2.1.10", |
|
"webpack": "^2.2.1", |
|
"webpack-dev-middleware": "^1.10.0", |
|
"webpack-hot-middleware": "^2.16.1", |
|
"webpack-merge": "^2.6.1" |
|
}, |
|
"engines": { |
|
"node": ">= 4.0.0", |
|
"npm": ">= 3.0.0" |
|
} |
|
}
|
|
|