forked from HumanSignal/label-studio-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 3.99 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "label-studio",
"version": "1.0.1",
"description": "Data Labeling Tool that is backend agnostic and can be embedded into your applications",
"homepage": "https://labelstud.io",
"author": {
"name": "Heartex Labs",
"url": "https://github.com/heartexlabs"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/heartexlabs/label-studio-frontend.git"
},
"browser": "build/static/js/main.js",
"main": "build/static/js/main.js",
"files": [
"build/",
"images/",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md"
],
"size-limit": [
{
"path": "build/static/js/*.js"
}
],
"devDependencies": {
"@babel/runtime": "^7.10.2",
"antd": "^4.3.3",
"array-move": "^1.0.0",
"codeceptjs": "^2.6.3",
"emoji-regex": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^3.1.0",
"insert-after": "^0.1.4",
"jsdoc-to-markdown": "^5.0.3",
"keymaster": "^1.6.2",
"konva": "^4.2.2",
"lint-staged": "^9.5.0",
"lodash.ismatch": "^4.4.0",
"lodash.throttle": "^4.1.1",
"mobx": "^5.15.4",
"mobx-react": "^6",
"mobx-state-tree": "^3.16.0",
"nanoid": "^2.1.11",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"pleasejs": "^0.4.2",
"prettier": "^1.19.1",
"puppeteer": "^3.3.0",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-dom": "^16.13.1",
"react-dropdown-tree-select": "^2.4.1",
"react-konva": "^16.8.7-0",
"react-rating": "^1.6.2",
"react-scripts": "^3.4.3",
"react-sortable-hoc": "^1.11.0",
"react-test-renderer": "^16.13.1",
"size-limit": "^4.6.0",
"string.prototype.matchall": "^4.0.2",
"svg.js": "^2.7.0",
"wavesurfer.js": "^3.3.3",
"xml2js": "^0.4.23",
"xpath-range": "^1.1.1"
},
"scripts": {
"build-bundle": "npm run build:final",
"build-notsourcemap": "GENERATE_SOURCEMAP=false npm run build",
"build:final": "BUILD_NO_CHUNKS=true npm run build",
"build:no-hash": "BUILD_NO_HASH=true BUILD_NO_CHUNKS=true npm run build",
"build:module": "BUILD_MODULE=true npm run build:no-hash",
"build": "react-app-rewired build",
"copy-examples": "bash scripts/copy.sh",
"eject": "react-scripts eject",
"docs:generate": "node scripts/create-docs.js",
"lint:write": "eslint --debug src/ --fix",
"lint": "eslint --debug src/",
"prepublishOnly": "npm run test && npm run build:final",
"prettier-styles": "prettier --write src/**/*.{css,scss}",
"prettier": "prettier --write src/**/*.js",
"size": "npm run build && size-limit",
"start": "npm run copy-examples && react-app-rewired start",
"test:e2e": "cd e2e && npx codeceptjs run --steps",
"test:e2e:headless": "cd e2e && HEADLESS=true npx codeceptjs run --steps",
"test:coverage": "npm test -- --coverage",
"test:watch": "react-scripts test",
"test": "set CI=true react-scripts test"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.(js|jsx)": [
"npm run prettier",
"git add"
],
"*.(css|scss)": [
"npm run prettier-styles",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"image-annotation",
"annotation-tool",
"annotation",
"labeling",
"labeling-tool",
"image-labeling",
"image-classification",
"semantic-segmentation",
"data-labeling",
"text-annotation"
],
"dependencies": {
"@thi.ng/rle-pack": "^2.1.6",
"babel-preset-react-app": "^9.1.1",
"d3": "^5.16.0",
"magic-wand-js": "^1.0.0"
},
"nohoist": [
"**/babel-preset-react-app/@babel/runtime"
]
}