package.json 2.0 KB
Newer Older
B
Boris Sekachev 已提交
1
{
V
Vitaliy Nishukov 已提交
2
  "name": "cvat-ui",
3
  "version": "1.33.2",
V
Vitaliy Nishukov 已提交
4 5 6 7
  "description": "CVAT single-page application",
  "main": "src/index.tsx",
  "scripts": {
    "build": "webpack --config ./webpack.config.js",
8
    "start": "webpack-dev-server --env.API_URL=http://localhost:7000 --config ./webpack.config.js --mode=development",
V
Vitaliy Nishukov 已提交
9 10 11 12 13
    "type-check": "tsc --noEmit",
    "type-check:watch": "npm run type-check -- --watch",
    "lint": "eslint './src/**/*.{ts,tsx}'",
    "lint:fix": "eslint './src/**/*.{ts,tsx}' --fix"
  },
14 15 16 17 18 19
  "browserslist": [
    "Chrome >= 63",
    "Firefox > 58",
    "not IE 11",
    "> 2%"
  ],
V
Vitaliy Nishukov 已提交
20 21
  "author": "Intel",
  "license": "MIT",
22
  "devDependencies": {},
V
Vitaliy Nishukov 已提交
23
  "dependencies": {
24
    "@ant-design/icons": "^4.6.3",
25
    "@types/lodash": "^4.14.172",
26
    "@types/platform": "^1.3.4",
27
    "@types/react": "^16.14.15",
28
    "@types/react-color": "^3.0.5",
29
    "@types/react-dom": "^16.9.14",
30
    "@types/react-redux": "^7.1.18",
31
    "@types/react-resizable": "^1.7.3",
32
    "@types/react-router": "^5.1.16",
33
    "@types/react-router-dom": "^5.1.9",
V
Vitaliy Nishukov 已提交
34
    "@types/react-share": "^3.0.3",
35
    "@types/redux-logger": "^3.0.9",
36
    "@types/resize-observer-browser": "^0.1.6",
37
    "antd": "^4.16.13",
V
Vitaliy Nishukov 已提交
38 39
    "copy-to-clipboard": "^3.3.1",
    "cvat-canvas": "file:../cvat-canvas",
40
    "cvat-canvas3d": "file:../cvat-canvas3d",
V
Vitaliy Nishukov 已提交
41 42 43
    "cvat-core": "file:../cvat-core",
    "dotenv-webpack": "^1.8.0",
    "error-stack-parser": "^2.0.6",
44
    "lodash": "^4.17.21",
45
    "moment": "^2.29.1",
46
    "mousetrap": "^1.6.5",
V
Vitaliy Nishukov 已提交
47 48
    "platform": "^1.3.6",
    "prop-types": "^15.7.2",
49
    "react": "^16.14.0",
50
    "react-awesome-query-builder": "^4.5.1",
51
    "react-color": "^2.19.3",
52
    "react-cookie": "^4.0.3",
53
    "react-dom": "^16.14.0",
54
    "react-moment": "^1.1.1",
55
    "react-redux": "^7.2.5",
56
    "react-resizable": "^1.11.1",
V
Vitaliy Nishukov 已提交
57 58
    "react-router": "^5.1.0",
    "react-router-dom": "^5.1.0",
59
    "react-share": "^4.4.0",
60
    "redux": "^4.1.1",
61
    "redux-devtools-extension": "^2.13.9",
V
Vitaliy Nishukov 已提交
62 63 64
    "redux-logger": "^3.0.6",
    "redux-thunk": "^2.3.0"
  }
B
Boris Sekachev 已提交
65
}