package.json 2.4 KB
Newer Older
W
wangqun 已提交
1
{
W
wangqun 已提交
2
  "name": "paddel-web",
W
wangqun 已提交
3 4 5 6
  "version": "1.0.0",
  "description": "paddle",
  "main": "index.js",
  "scripts": {
W
wangqun 已提交
7
    "server": "parcel ./src/index.html",
W
wangqun 已提交
8
    "mobilenet": "parcel ./examples/mobileNet/index.html",
9 10
    "mobilenetOpt": "parcel ./examples/mobileNetOpt/index.html",
    "wine": "parcel ./examples/wine/index.html --port 1234",
W
wangqun 已提交
11 12
    "tinyYolo": "parcel ./examples/tinyYolo/index.html",
    "huangfan": "parcel ./examples/huangfan/index.html",
W
wangqun 已提交
13 14 15
    "terrorModel": "parcel ./examples/terrorModel/index.html",
    "humanseg": "parcel ./examples/humanseg/index.html",
    "humanStream": "parcel ./examples/humanStream/index.html --port 1234 --https",
16 17
    "gesture": "parcel ./examples/gesture/index.html --port 8888 --https",
    "benchmark": "parcel ./examples/benchmark/index.html",
W
wangqun 已提交
18
    "yolo": "parcel ./examples/yolo/index.html",
19
    "videoDemo": "parcel ./examples/tinyYolo/videoDemo.html --port 8123 --https",
W
wangqun 已提交
20
    "unitTest": "parcel ./test/unitTest.html",
21 22 23 24
    "test": "jest",
    "build": "parcel build ./examples/humanStream/index.html",
    "demo": "parcel ./examples/demo/index.html",
    "pub": "webpack"
W
wangqun 已提交
25 26
  },
  "devDependencies": {
27 28 29
    "@babel/core": "^7.9.6",
    "@babel/preset-env": "^7.9.6",
    "@vue/component-compiler-utils": "^3.1.2",
30
    "axios": "^0.19.2",
W
wangqun 已提交
31
    "babel-core": "^6.26.3",
32
    "babel-jest": "^26.0.1",
W
wangqun 已提交
33 34 35 36 37 38 39 40 41
    "babel-loader": "^8.0.6",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-decorators-legacy": "^1.3.5",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-polyfill": "^6.26.0",
    "babel-preset-env": "^1.7.0",
    "babel-preset-react": "^6.24.1",
    "babel-preset-stage-0": "^6.24.1",
    "babel-runtime": "^6.26.0",
42 43
    "gl": "^4.5.0",
    "jest": "^26.0.1",
W
wangqun 已提交
44
    "less": "^3.11.1",
W
wangqun 已提交
45
    "parcel-bundler": "^1.10.3",
46 47 48 49
    "pre-push": "^0.1.1",
    "pug": "^3.0.0",
    "typescript": "^3.9.5",
    "vue-template-compiler": "^2.6.11",
W
wangqun 已提交
50 51 52
    "webpack-cli": "^3.3.6"
  },
  "keywords": [],
53 54 55
  "pre-push": [
    "test"
  ],
W
wangqun 已提交
56 57 58
  "author": "",
  "license": "ISC",
  "dependencies": {
W
wangqun 已提交
59 60
    "@babel/plugin-transform-runtime": "^7.6.2",
    "@babel/runtime": "^7.7.2",
61
    "element-ui": "^2.13.2",
W
wangqun 已提交
62 63
    "extract-text-webpack-plugin": "^4.0.0-beta.0",
    "js-file-download": "^0.4.10",
64
    "paddlejs": "^1.0.0-beta.0",
W
wangqun 已提交
65
    "vconsole": "^3.3.2",
66 67
    "vue": "^2.6.11",
    "vue-hot-reload-api": "^2.3.4",
W
wangqun 已提交
68 69
    "webpack": "^4.39.2",
    "webpack-zepto": "0.0.1"
W
wangqun 已提交
70 71
  }
}