-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.21 KB
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
{
"name": "@annotate-lab/react-image-annotate",
"version": "2.0.0",
"private": false,
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.15.21",
"@mui/x-charts": "^7.8.0",
"axios": "^1.8.2",
"cash-dom": "^8.1.5",
"classnames": "^2.3.2",
"color-alpha": "^2.0.0",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"lodash.debounce": "^4.0.8",
"material-survey": "^2.1.0",
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"react-draggable": "^4.4.6",
"react-dropzone": "^14.2.3",
"react-hotkeys": "^2.0.0",
"react-i18next": "^14.1.2",
"react-remove-scroll": "^2.5.10",
"react-select": "^5.7.7",
"react-use": "^17.4.0",
"seamless-immutable": "^7.1.4",
"transformation-matrix-js": "^2.7.6",
"use-event-callback": "^0.1.0"
},
"repository": {
"type": "git",
"url": "hhttps://github.com/sumn2u/annotate-lab"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"scripts": {
"start": "vite --force",
"windows-start": "node client-server.js",
"build": "vite build",
"test": "jest",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@vitejs/plugin-react": "^4.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"vite": "^5.2.11",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-raw-plugin": "^1.0.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"prettier": {
"semi": false
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^color-alpha$": "<rootDir>/node_modules/color-alpha"
}
}
}