forked from cvat-ai/cvat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "cvat",
"version": "1.0.0",
"description": "Eslint && remarklint dependencies",
"main": ".eslintrc.js",
"directories": {
"test": "tests"
},
"workspaces": [
"cvat-data",
"cvat-core",
"cvat-canvas",
"cvat-canvas3d",
"cvat-ui"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@istanbuljs/nyc-config-babel": "^1.0.1",
"@types/mousetrap": "^1.6.5",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"airbnb": "0.0.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^5.1.2",
"coveralls": "^3.1.0",
"css-loader": "^3.4.2",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-no-unsafe-innerhtml": "^1.0.16",
"eslint-plugin-no-unsanitized": "^3.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.4.2",
"micromatch": "^4.0.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "2.1.2",
"react-svg-loader": "^3.0.3",
"remark-cli": "^9.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-lint-emphasis-marker": "^2.0.0",
"remark-lint-list-item-spacing": "^2.0.0",
"remark-lint-maximum-heading-length": "^2.0.0",
"remark-lint-maximum-line-length": "^2.0.0",
"remark-lint-no-dead-urls": "^1.0.2",
"remark-lint-no-file-name-irregular-characters": "^1.0.3",
"remark-lint-ordered-list-marker-style": "^2.0.0",
"remark-lint-strong-marker": "^2.0.0",
"remark-lint-unordered-list-marker-style": "^2.0.0",
"remark-preset-lint-consistent": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"sass": "^1.42.1",
"sass-loader": "^10.0.0",
"source-map-support": "^0.5.19",
"style-loader": "^1.0.0",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.7.3",
"vfile-reporter-json": "^2.0.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^2.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"coverage": "npm run instrument && npm run cp && npm run rm",
"instrument": "nyc instrument cvat-ui cvat-ui_cov && nyc instrument cvat-canvas cvat-canvas_cov && nyc instrument cvat-data cvat-data_cov && nyc instrument cvat-core cvat-core_cov",
"cp": "cp -r cvat-ui_cov/* cvat-ui && cp -r cvat-canvas_cov/* cvat-canvas && cp -r cvat-data_cov/* cvat-data && cp -r cvat-core_cov/* cvat-core",
"rm": "rm -rf cvat-ui_cov cvat-canvas_cov cvat-data_cov cvat-core_cov",
"prepare": "husky install && rm .husky/pre-commit; npx husky add .husky/pre-commit \"npx lint-staged\"",
"precommit:cvat-data": "cd cvat-ui && eslint --fix",
"precommit:cvat-core": "cd cvat-ui && eslint --fix",
"precommit:cvat-canvas": "cd cvat-ui && eslint --fix",
"precommit:cvat-canvas3d": "cd cvat-ui && eslint --fix",
"precommit:cvat-ui": "cd cvat-ui && eslint --fix",
"build:cvat-ui": "npm run build --workspace=cvat-ui",
"build:cvat-canvas": "npm run build --workspace=cvat-canvas",
"build:cvat-canvas3d": "npm run build --workspace=cvat-canvas3d",
"build:cvat-core": "npm run build --workspace=cvat-core",
"build:cvat-data": "npm run build --workspace=cvat-data",
"server:cvat-canvas": "npm run server --workspace=cvat-canvas",
"server:cvat-canvas3d": "npm run server --workspace=cvat-canvas3d",
"server:cvat-data": "npm run server --workspace=cvat-data",
"start:cvat-ui": "npm run start --workspace=cvat-ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openvinotoolkit/cvat.git"
},
"author": "Intel",
"license": "MIT",
"bugs": {
"url": "https://github.com/openvinotoolkit/cvat/issues"
},
"homepage": "https://github.com/openvinotoolkit/cvat#readme"
}