forked from HumanSignal/label-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.74 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
{
"name": "label-studio",
"version": "0.0.6",
"private": true,
"description": "Label Studio is a multi-domain data labeling tool with standardized output format",
"author": {
"name": "Heartex",
"url": "https://github.com/heartexlabs"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/heartexlabs/label-studio.git"
},
"size-limit": [
{
"path": "build/static/js/*.js"
}
],
"devDependencies": {
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.8.6",
"size-limit": "^1.3.7"
},
"dependencies": {
"antd": "^3.20.1",
"array-move": "^1.0.0",
"emoji-regex": "^7.0.3",
"keymaster": "^1.6.2",
"konva": "^2.5.1",
"mobx": "^5.8.0",
"mobx-react": "^5.4.3",
"mobx-state-tree": "^3.10.0",
"nanoid": "^2.0.3",
"node-sass": "^4.12.0",
"parse5": "^5.1.0",
"react": "^16.6.3",
"react-dom": "^16.7.0",
"react-konva": "^16.6.31",
"react-rating": "^1.6.2",
"react-scripts": "2.1.1",
"react-sortable-hoc": "^1.8.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.84.0",
"svg.js": "^2.7.0",
"wavesurfer.js": "^3.0.0"
},
"scripts": {
"start": "npm run copy-examples && react-scripts start",
"only-build": "npm run copy-examples && react-scripts build",
"local": "npm run only-build && npm run start",
"build": "npm run copy-examples && npm run test && react-scripts build",
"build-mac": "npm run only-build",
"test:watch": "react-scripts test",
"test": "CI=true react-scripts test",
"test:coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"size": "npm run only-build && size-limit",
"prettier": "prettier --write src/**/*.js",
"prettier-styles": "prettier --write src/**/*.{css,scss}",
"lint": "eslint --debug src/",
"lint:write": "eslint --debug src/ --fix",
"publish": "npm run copy-examples && GENERATE_SOURCEMAP=false npm run build",
"copy-examples": "bash scripts/copy.sh"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm 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"
]
}
}