-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "@recogito/recogito-js",
"version": "1.8.4",
"description": "A JavaScript library for text annotation",
"main": "dist/recogito.min.js",
"scripts": {
"start": "webpack serve --open --mode=development",
"build": "webpack --mode=production",
"build-polyfills": "webpack --mode=production --config webpack.polyfills.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recogito/recogito-js.git"
},
"keywords": [
"RecogitoJS",
"Annotation"
],
"author": "Rainer Simon",
"license": "BSD-3-Clause",
"funding": {
"type" : "patreon",
"url" : "https://www.patreon.com/rainersimon"
},
"bugs": {
"url": "https://github.com/recogito/recogito-js/issues"
},
"homepage": "https://github.com/recogito/recogito-js#readme",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties"
]
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.6.0",
"sass": "^1.35.2",
"sass-loader": "^10.2.0",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@recogito/recogito-client-core": "1.7.9",
"preact": "^10.5.13",
"tiny-emitter": "^2.1.0"
}
}