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",
19
    "d3": "^4.7.4",
B
BingBlog 已提交
20
    "d3-format": "^1.2.1",
21
    "dagre": "^0.8.2",
22
    "dagre-d3": "^0.6.1",
23 24
    "echarts": "^4.0.0",
    "echarts-gl": "^1.1.0",
B
BingBlog 已提交
25
    "file-saver": "^1.3.3",
26
    "graphlib": "^1.0.5",
B
BingBlog 已提交
27 28
    "htmlcs": "^0.4.1",
    "lesslint": "^1.0.2",
B
BingBlog 已提交
29 30
    "lodash": "^4.17.4",
    "normalize.css": "^6.0.0",
B
BingBlog 已提交
31
    "qs": "^6.5.1",
J
Jeff Wang 已提交
32 33 34
    "vue": "^2.5.2",
    "vue-router": "^3.0.1",
    "vuetify": "^0.17.7",
B
BingBlog 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
    "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 已提交
53
    "express": "^4.16.2",
B
BingBlog 已提交
54
    "extract-text-webpack-plugin": "^2.1.0",
B
BingBlog 已提交
55
    "fecs": "1.5.2",
B
BingBlog 已提交
56 57 58 59 60 61
    "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 已提交
62
    "interactjs": "^1.3.2",
B
BingBlog 已提交
63 64 65 66 67 68
    "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 已提交
69
    "rimraf": "^2.6.2",
B
BingBlog 已提交
70 71 72 73
    "style-loader": "^0.16.1",
    "stylus": "^0.54.5",
    "stylus-loader": "^3.0.1",
    "url-loader": "^0.5.8",
74 75 76 77 78
    "vue-jest": "^1.0.2",
    "vue-loader": "^13.3.0",
    "vue-style-loader": "^3.0.1",
    "vue-template-compiler": "^2.5.2",
    "webpack": "^2.7.0",
Q
qiaolongfei 已提交
79
    "webpack-dev-middleware": "^1.12.1",
B
BingBlog 已提交
80 81 82
    "webpack-dev-server": "^2.4.2",
    "webpack-hot-middleware": "^2.19.1",
    "webpack-merge": "^4.1.0",
83
    "yargs": "^8.0.2"
B
BingBlog 已提交
84 85
  }
}