forked from klassif-ai/react-pdf-ner-annotator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.49 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
{
"name": "react-pdf-ner-annotator",
"version": "3.1.6",
"private": false,
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@react-hook/mouse-position": "^4.1.0",
"lodash": "^4.17.20",
"object-hash": "^2.2.0",
"pdfjs-dist": "2.4.456",
"react-intersection-observer": "^8.26.2",
"tesseract.js": "^2.1.1"
},
"scripts": {
"start-development": "npm start",
"start": "npm run build && npm start --prefix example",
"build": "rimraf lib && tsc -p ./ --declaration --outDir lib/ && npm run sass-compile && npm run copy",
"sass-compile": "node-sass -r src/scss -o lib/css",
"copy": "copyfiles -u 1 \"./src/**/*{.svg,scss,js}\" \"lib\"",
"test": "react-scripts test",
"lint": "eslint \"src/**/*{.ts,tsx}\" --fix",
"prettier": "prettier --write \"src/**/*{.ts,tsx}\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.159",
"@types/node": "^12.12.54",
"@types/pdfjs-dist": "^2.7.1",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"babel-eslint": "10.1.0",
"copyfiles": "^2.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.5",
"eslint-plugin-react-hooks": "4.0.8",
"node-sass": "^4.14.1",
"prettier": "2.0.5",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaartenBloemen/react-pdf-ner-annotator.git"
},
"author": "Maarten Bloemen",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaartenBloemen/react-pdf-ner-annotator/issues"
},
"keywords": [
"react-component",
"typescript",
"PDF",
"NER"
]
}