-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.47 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
{
"name": "@ia2coop/ia2-annotation-tool",
"version": "1.2.5",
"description": "Annotation tool components library for IA² Project",
"bugs": {
"url": "https://github.com/instituciones-abiertas/ia2-annotation-tool/issues",
"email": "[email protected]"
},
"author": {
"name": "IA² Team",
"email": "[email protected]",
"url": "https://www.ia2.coop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instituciones-abiertas/ia2-annotation-tool.git"
},
"keywords": [
"reactjs",
"react",
"annotation",
"IA²"
],
"license": "GPL-3.0-only",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "react-scripts start",
"build-examples": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build": "rimraf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"prepare": "npm run build && husky install",
"lint": "eslint --cache './src/**/*.{js,jsx}'",
"lint-fix": "npm run lint -- --fix; exit 0"
},
"dependencies": {
"@ia2coop/ia2-react-text-annotate": "^1.2.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@reduxjs/toolkit": "^1.5.1",
"axios": "^0.21.1",
"echarts": "^5.1.1",
"echarts-for-react": "^3.0.1",
"file-saver": "^2.0.5",
"prop-types": "^15.7.2",
"react-redux": "^7.2.3",
"redux": "^4.1.0",
"redux-undo": "^1.0.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"rimraf": "^3.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}