package.json 2.4 KB
Newer Older
B
BingBlog 已提交
1
{
2
  "name": "VisualDL",
3 4
  "version": "1.0.0",
  "description": "Visualization toolkit for deep learning",
B
BingBlog 已提交
5 6 7 8
  "scripts": {
    "release": "cross-env NODE_ENV=production node ./tool/build.js",
    "build": "cross-env NODE_ENV=dev node ./tool/build.js",
    "dev": "cross-env NODE_ENV=dev node tool/dev-server.js",
B
BingBlog 已提交
9
    "lint": "./node_modules/fecs/bin/fecs --rule"
B
BingBlog 已提交
10 11 12 13 14 15
  },
  "engines": {
    "node": ">= 6.4.0"
  },
  "dependencies": {
    "axios": "^0.16.1",
B
BingBlog 已提交
16
    "csshint": "^0.3.3",
17 18
    "cytoscape": "^3.2.11",
    "cytoscape-dagre": "^2.2.0",
B
BingBlog 已提交
19
    "d3-format": "^1.2.1",
20
    "dagre": "^0.8.2",
B
BingBlog 已提交
21
    "echarts": "^3.8.5",
B
BingBlog 已提交
22
    "file-saver": "^1.3.3",
B
BingBlog 已提交
23 24
    "htmlcs": "^0.4.1",
    "lesslint": "^1.0.2",
B
BingBlog 已提交
25 26
    "lodash": "^4.17.4",
    "normalize.css": "^6.0.0",
B
BingBlog 已提交
27
    "qs": "^6.5.1",
J
Jeff Wang 已提交
28 29 30
    "vue": "^2.5.2",
    "vue-router": "^3.0.1",
    "vuetify": "^0.17.7",
B
BingBlog 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    "xlsx": "^0.11.3"
  },
  "devDependencies": {
    "autoprefixer": "^6.7.7",
    "autoresponse": "^0.2.0",
    "babel-core": "^6.25.0",
    "babel-loader": "^6.2.7",
    "babel-plugin-transform-class-properties": "^6.19.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-es2015": "^6.18.0",
    "babel-preset-stage-0": "^6.16.0",
    "babel-register": "^6.0.0",
    "babel-runtime": "^6.26.0",
    "case-sensitive-paths-webpack-plugin": "^2.1.1",
    "chalk": "^1.1.3",
    "copy-webpack-plugin": "^4.0.1",
    "cross-env": "^4.0.0",
    "css-loader": "^0.28.0",
Q
qiaolongfei 已提交
49
    "express": "^4.16.2",
B
BingBlog 已提交
50
    "extract-text-webpack-plugin": "^2.1.0",
B
BingBlog 已提交
51
    "fecs": "1.5.2",
B
BingBlog 已提交
52 53 54 55 56 57
    "file-loader": "^0.11.1",
    "friendly-errors-webpack-plugin": "^1.6.1",
    "glob": "^7.1.1",
    "html-loader": "^0.4.4",
    "html-webpack-plugin": "^2.28.0",
    "http-proxy-middleware": "^0.17.4",
B
BingBlog 已提交
58
    "interactjs": "^1.3.2",
B
BingBlog 已提交
59 60 61 62 63 64
    "json-loader": "^0.5.4",
    "opn": "^5.1.0",
    "optimize-css-assets-webpack-plugin": "^1.3.2",
    "ora": "^1.1.0",
    "postcss-loader": "^1.3.3",
    "raw-loader": "^0.5.1",
Q
qiaolongfei 已提交
65
    "rimraf": "^2.6.2",
B
BingBlog 已提交
66 67 68 69 70
    "style-loader": "^0.16.1",
    "stylus": "^0.54.5",
    "stylus-loader": "^3.0.1",
    "url-loader": "^0.5.8",
    "webpack": "^2.4.1",
Q
qiaolongfei 已提交
71
    "webpack-dev-middleware": "^1.12.1",
B
BingBlog 已提交
72 73 74
    "webpack-dev-server": "^2.4.2",
    "webpack-hot-middleware": "^2.19.1",
    "webpack-merge": "^4.1.0",
J
Jeff Wang 已提交
75 76 77 78 79
    "yargs": "^8.0.2",
    "vue-jest": "^1.0.2",
    "vue-loader": "^13.3.0",
    "vue-style-loader": "^3.0.1",
    "vue-template-compiler": "^2.5.2"
B
BingBlog 已提交
80 81
  }
}