-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"name": "@axa-fr/slight-capture",
"private": false,
"version": "0.13.3",
"type": "module",
"module": "./src/SlightCapture/index.js",
"description": "Pure vanilla javascript library to capture a document image from webcam for web application. Tested on Chrome, Firefox, Safari.",
"files": [
"src/SlightCapture",
"bin",
"public/opencv.js",
"README.md",
"package.json",
"package-lock.json"
],
"keywords": [
"image capture",
"image",
"opencv",
"vanilla",
"GreenIT"
],
"repository": {
"type": "git",
"url": "https://github.com/AxaFrance/slight-capture.git"
},
"scripts": {
"dev": "vite",
"build": "storybook build",
"build-vite": "vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "echo 'WARNING keep up to date opencv.js file'"
},
"dependencies": {},
"devDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.66.1",
"@storybook/addon-essentials": "8.0.8",
"@storybook/addon-interactions": "8.0.8",
"@storybook/addon-links": "8.0.8",
"@storybook/blocks": "8.0.8",
"@storybook/react": "8.0.8",
"@storybook/react-vite": "8.0.8",
"@storybook/testing-library": "^0.2.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "0.8.0",
"prop-types": "^15.8.1",
"storybook": "8.0.8",
"vite": "5.2.9"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}